-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_coc-settings.json
More file actions
50 lines (50 loc) · 1.57 KB
/
_coc-settings.json
File metadata and controls
50 lines (50 loc) · 1.57 KB
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
41
42
43
44
45
46
47
48
49
50
{
"diagnostic.enable": true,
"diagnostic.displayByAle": true,
"diagnostic.enableSign": false,
"diagnostic.messageTarget": "float",
"diagnostic.messageLevel": "error",
"diagnostic.virtualText": false,
"diagnostic.virtualTextCurrentLineOnly": true,
"inlayHint.display": true,
"inlayHint.position": "eol",
"suggest.enablePreselect": false,
"suggest.noselect": true,
"notification.disabledProgressSources": [
"*"
],
"coc.preferences.formatOnSaveFiletypes": [],
"coc.preferences.enableMessageDialog": true,
"Lua.workspace.ignoreSubmodules": false,
"Lua.diagnostics.enable": false,
"Lua.hint.enable": false,
"Lua.codeLens.enable": false,
"Lua.completion.keywordSnippet": "Disable",
"Lua.workspace.maxPreload": 10000,
"Lua.workspace.preloadFileSize": 1000,
"languageserver": {
"rust": {
"command": "rust-analyzer",
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
},
"go": {
"command": "gopls",
"rootPatterns": ["go.work", "go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"],
"initializationOptions": {
"usePlaceholders": true
}
}
},
"[c][cpp]": {
"inlayHint.enable": false,
"diagnostic.enable": true
},
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/21.1.8/clangd_21.1.8/bin/clangd",
"clangd.arguments": [
"--query-driver=/usr/bin/c++",
"--clang-tidy",
"--background-index"
]
}