-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
41 lines (33 loc) · 1.08 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
{
"coc.preferences.extensionUpdateCheck": "daily",
"hover.floatConfig": {"border": true},
"diagnostic.floatConfig": {"border": true},
"signature.floatConfig": {"border": true},
"diagnostic.warningSign": "",
"diagnostic.errorSign": "",
"diagnostic.infoSign": "",
"diagnostic.hintSign": "",
"suggest.triggerCompletionWait": 30,
"suggest.floatConfig": {"border": true},
"suggest.asciiCharactersOnly": true,
"snippets.snipmate.enable": false,
"snippets.ultisnips.enable": true,
"snippets.ultisnips.directories": [ "snippets" ],
"snippets.loadFromExtensions": false,
"snippets.extends": {"latex": ["tex", "texmath"]},
"snippets.ultisnips.pythonPrompt": false,
"clangd.arguments": ["--header-insertion=never"],
"inlayHint.enable": false,
"yank.enableCompletion": true,
"yank.highlight.enable": false,
"python.formatting.provider": "black",
"go.goplsOptions": {
"staticcheck": true,
"usePlaceholders": true,
"semanticTokens": true,
},
"go.goplsPath": "/home/huibo/.go/bin/gopls",
"[go]": {
"coc.preferences.formatOnSave": true
},
}