-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
40 lines (40 loc) · 1.4 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
35
36
37
38
39
40
{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp",
"objc",
"objcpp"
],
"rootPatterns": [
".ccls",
"compile_commands.json",
".vim/",
".git/",
".hg/"
],
"initializationOptions": {
"index": {
"onChange": true
},
"highlight": { "lsRanges" : true },
"cache": {
"directory": "/tmp/ccls"
},
"clang": {
"extraArgs": [
"-isystem/usr/local/include",
"-isystem/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1",
"-isystem/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include",
"-isystem/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include",
"-isystem/Library/Developer/CommandLineTools/usr/include",
"-isystem/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"resourceDir": "/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0"
}
}
}
}
}