-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc-settings.json
56 lines (56 loc) · 1.84 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
{
"coc.preferences.currentFunctionSymbolAutoUpdate": true,
"semanticTokens.enable": true,
"typescript.inlayHints.parameterNames.enabled": "literals",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"rust-analyzer.inlayHints.maxLength": 12,
"rust-analyzer.inlayHints.chainingHints.enable": true,
"suggest.completionItemKindLabels": {
"constructor": "\ueb70",
"keyword": "\ueb62",
"variable": "\uea88",
"value": "\ueb5f",
"operator": "\ueb64",
"function": "\udb81\ude27",
"reference": "\ueb36",
"constant": "\ue22c",
"method": "\uea8c",
"struct": "\uea91",
"class": "\ueb5b",
"interface": "\ueb61",
"text": "\ue612",
"enum": "\uea95",
"enumMember": "\ueb5e",
"module": "\ueaee",
"color": "\ue22b",
"property": "\ueb65",
"field": "\ueb5f",
"unit": "\uea96",
"event": "\uea86",
"file": "\ueb60",
"folder": "\uea83",
"snippet": "\ueb66",
"typeParameter": "\ueb17",
"default": " "
},
"[rust]": {
"coc.preferences.formatOnSave": true
},
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": [ "*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml" ],
"filetypes": ["haskell", "lhaskell"],
"settings": {
"haskell": {
"checkParents": "CheckOnSave",
"checkProject": true,
"maxCompletions": 40,
"formattingProvider": "ormolu"
}
}
}
}
}