-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
48 lines (47 loc) · 1.41 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
47
48
{
"diagnostic.enableHighlightLineNumber": false,
"diagnostic.errorSign": "? ",
"diagnostic.hintSign": "* ",
"diagnostic.warningSign": "* ",
"diagnostic.infoSign": "* ",
"diagnostic.displayByAle": true,
"clangd.disableDiagnostics": true,
"python.linting.enabled": false,
"python.linting.pylintEnabled": true,
"typescript.suggest.enabled": false,
"tsserver.enable": true,
"javascript.suggest.enabled": true,
"rust-analyzer.inlayHints.enable": false,
"rust-analyzer.cargo.allFeatures": true,
"rust-analyzer.callInfo.full": true,
"rust-analyzer.hover.documentation": true,
"rust-analyzer.lens.enable": false,
"codeLens.enable": false,
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": [
"--lsp"
],
"rootPatterns": [
".stack.yaml",
".hie-bios",
"BUILD.bazel",
"cabal.config",
"package.yaml"
],
"filetypes": [
"hs",
"lhs",
"haskell"
],
"initializationOptions": {
"languageServerHaskell": {
"hlintOn": false,
"maxNumberOfProblems": 10,
"completionSnippetsOn": true
}
}
}
}
}