-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
36 lines (35 loc) · 918 Bytes
/
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
{
"suggest.labelMaxLength": 60,
"suggest.completionItemKindLabels": {
"class": "\uf0e8",
"color": "\ue22b"
},
"cmake.formatter": "cmake-format",
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp",
"objc",
"objcpp"
],
"rootPatterns": [
"compile_commands.json"
],
"trace.server": "verbose",
"initializationOptions": {
"cacheDirectory": "/tmp/ccls"
}
}
},
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/16.0.2/clangd_16.0.2/bin/clangd",
"java.enabled": true,
"java.configuration.runtimes": [
{
"name": "JavaSE-11",
"path": "/root/src/jdk",
"default": true
}
]
}