-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
53 lines (53 loc) · 982 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"npm.binPath": "npm",
"coc.preferences.formatOnSave": true,
"languageserver": {
"go": {
"command": "gopls",
"rootPatterns": [
"go.work",
"go.mod",
".vim/",
".git/",
".hg/"
],
"trace.server": "verbose",
"filetypes": [
"go"
],
"initializationOptions": {
"usePlaceholders": true,
}
},
"ts": {
"filetypes": [
"ts"
],
"module": ""
},
"solidity": {
"module": "",
"args": [
"--stdio"
],
"rootPatterns": [
".git/"
],
"trace.server": "verbose",
"filetypes": [
"sol"
]
}
},
"colors.enable": true,
"tsserver.enable": true,
"tsserver.implicitProjectConfig.checkJs": true,
"tsserver.implicitProjectConfig.experimentalDecorators": true,
"coc.preferences.useQuickfixForLocations": true,
"diagnostic.enable": true,
"diagnostic.errorSign": "✗",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "",
"diagnostic.hintSign": "",
"suggest.noselect": false,
}