-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc-settings.json
59 lines (59 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
{
"diagnostic.checkCurrentLine": true,
"diagnostic.enableMessage": "jump",
"diagnostic.maxWindowHeight": 20,
"diagnostic.messageTarget": "float",
"diagnostic.refreshOnInsertMode": true,
"diagnostic.virtualText": true,
"diagnostic.virtualTextLines": 20,
"coc.preferences.colorSupport": true,
"coc.preferences.formatOnSaveFiletypes": [
"fsharp",
"elm",
"json",
"javascript",
"typescript",
"php",
"twig"
],
"coc.preferences.useQuickfixForLocations": true,
"javascript.suggestionActions.enabled": false,
"typescript.suggestionActions.enabled": false,
"javascript.showUnused": false,
"typescript.showUnused": false,
"suggest.minTriggerInputLength": 1,
"eslint.probe": ["javascript", "typescript"],
"eslint.autoFixOnSave": true,
"tsserver.formatOnType": true,
"tsserver.enableJavascript": true,
"prettier.eslintIntegration": true,
"coc.preferences.formatOnType": true,
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml",
"hie.yaml"
],
"filetypes": ["haskell", "lhaskell"]
},
"nix": {
"command": "rnix-lsp",
"filetypes": ["nix"]
},
"elmLS": {
"command": "elm-language-server",
"filetypes": ["elm"],
"rootPatterns": ["elm.json"],
"trace.server": "verbose",
"initializationOptions": {
"elmAnalyseTrigger": "never"
}
}
},
"codeLens.enable": false
}