-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
37 lines (37 loc) · 1001 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
37
{
"Lua.telemetry.enable": true,
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"highlight": {"lsRanges": true},
"cache": {
"directory": "/tmp/ccls"
},
"completion": {
"detailedLable": true,
"placeholder": true
},
"index": {
"onChange": false,
"initialNoLinkage": true,
"threads": 2
},
"compilationDatabaseDirectory": ".vscode/"
}
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod"],
"filetypes": ["go"]
},
"rust": {
"command": "rust-analyzer",
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"],
"rust-analyzer.cargo.features" :["console-test"]
}
}
}