-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
32 lines (32 loc) · 876 Bytes
/
coc-settings.json
File metadata and controls
32 lines (32 loc) · 876 Bytes
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
{
"coc.preferences.hoverTarget": "echo",
"coc.preferences.noselect": false,
"diagnostic.checkCurrentLine": true,
"diagnostic.errorSign": ">>",
"diagnostic.warningSign": ">>",
"languageserver": {
"csharp-ls": {
"command": "/home/kaguya/.dotnet/tools/csharp-ls",
"filetypes": ["cs"],
"rootPatterns": ["*.csproj", ".vim/", ".git/", ".hg/"]
},
"clangd": {
"enable": false,
"command": "/usr/bin/clangd-20",
"args": [ "--inlay-hints=false" ],
"rootPatterns": [".git/", ".hg/"],
"filetypes": ["c", "cpp"],
"inlayHints.enable": false
},
"ccls": {
"command": "ccls",
"rootPatterns": [".ccls-root", ".git/", ".hg/"],
"filetypes": ["c", "cpp", "objc", "objcpp"],
"initializationOptions": {
"clang": {
"extraArgs": [ "-std=c23" ]
}
}
}
}
}