-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
46 lines (38 loc) · 1.39 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
{
"semanticTokens.enable": true,
"coc.preferences.formatOnType": true,
"coc.preferences.formatOnSave": true,
"coc.preferences.useQuickfixForLocations": true,
"rust-analyzer.inlayHints.closureStyle": "impl_fn",
"rust-analyzer.inlayHints.closureReturnTypeHints.enable": "always",
"rust-analyzer.inlayHints.discriminantHints.enable": "always",
"rust-analyzer.semanticHighlighting.punctuation.specialization.enable": true,
"rust-analyzer.typing.autoClosingAngleBrackets.enable": true,
"rust-analyzer.assist.emitMustUse": true,
"languageserver": {
"zls": {
"command": "zls.exe",
"filetypes": ["zig"]
},
"elmLS": {
"command": "elm-language-server",
"filetypes": ["elm"],
"rootPatterns": ["elm.json"]
}
},
"python.analysis.typeCheckingMode": "strict",
"clangd.fallbackFlags": ["-xc++ -othercompilerflagsofyourchoice"],
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "C:/Program Files/Zulu/zulu-17",
"default": true
}
],
"colors.enable": true,
"suggest.floatConfig": { "border": true, "shadow": true, "rounded": true },
"diagnostic.floatConfig": { "border": true, "shadow": true, "rounded": true },
"diagnostic.checkCurrentLine": true,
"signature.floatConfig": { "border": true, "shadow": true, "rounded": true },
"hover.floatConfig": { "border": true, "shadow": true, "rounded": true }
}