forked from conqueror-1/vimconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
35 lines (34 loc) · 1.67 KB
/
coc-settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"clangd.arguments": [
"--query-driver=/usr/bin/clang++",
"--background-index"
],
"languageserver": {
"jedi": {
"command": "jedi-language-server",
"filetypes": [
"python"
]
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"clang": {
"resourceDir": "/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0",
"extraArgs": [
"-isystem",
"/Library/Developer/CommandLineTools/usr/include/c++/v1",
"-I",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/"
]
}
}
}
},
"clangd.path": "/Users/user/.config/coc/extensions/coc-clangd-data/install/12.0.0/clangd_12.0.0/bin/clangd"
}