-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
46 lines (46 loc) · 1.25 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
41
42
43
44
45
46
{
"workspace.rootPatterns": [
".git",
".hg",
".projections.json",
".root"
],
"suggest.noselect": true,
"suggest.enablePreselect": false,
"suggest.detailField": "preview",
"suggest.floatConfig": {
"border": true,
"rounded": true
},
"diagnostic.errorSign": "\uf467",
"diagnostic.warningSign": "\uf071",
"diagnostic.infoSign": "\uf129",
"diagnostic.hintSign": "\uf864",
"diagnostic.refreshOnInsertMode": false,
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualText": false,
"diagnostic.enableMessage": "always",
"clangd.disableDiagnostics": true,
"snippets.ultisnips.enable": true,
"snippets.ultisnips.directories": [
"UltiSnips",
"$HOME/.vim/plugged/vim-snippets/UltiSnips",
"$HOME/.vim//UltiSnips"
],
"clangd.arguments": [
"--background-index",
"--clang-tidy",
"--clang-tidy-checks=performance-*,bugprone-*",
"--all-scopes-completion",
"--completion-style=detailed",
"--header-insertion=iwyu",
"--pch-storage=disk",
"--compile-commands-dir=${workspaceFolder}/.compile_info"
],
"signature.enable": true,
"snippets.ultisnips.pythonPrompt": false,
"colors.enable": true,
"semanticTokens.enable": true,
"inlayHint.enable": true,
"codeLens.enable": true
}