-
Notifications
You must be signed in to change notification settings - Fork 3
/
coc-settings.json
101 lines (91 loc) · 2.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"coc.preferences.formatOnSaveFiletypes": [],
"coc.preferences.extensionUpdateCheck": "daily",
"diagnostic.errorSign": "✗",
"diagnostic.hintSign": "➤",
"diagnostic.infoSign": "i",
"diagnostic.messageDelay": 1000,
"diagnostic.warningSign": "⚠",
"eslint.autoFixOnSave": true,
"eslint.codeAction.showDocumentation": { "enable": true },
"eslint.quiet": false,
"less.validate": false,
"scss.validate": false,
"css.validate": false,
"tsserver.log": "off",
"tsserver.npm": "~/n/bin/npm",
"tsserver.trace.server": "off",
"typescript.autoClosingTags": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"workspace.bottomUpFiletypes": ["python"],
"python.formatting.blackPath": "~/venvs/black/bin/black",
"python.formatting.provider": "black",
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "~/venvs/pylint/bin/pylint",
"python.pythonPath": "python",
"python.venvPath": "~/venvs/",
"suggest.maxCompleteItemCount": 20,
"suggest.timeout": 5000,
"suggest.completionItemKindLabels": {
"class": "\uf0e8",
"color": "\ue22b",
"constant": "\uf8fe",
"default": "\uf29c",
"enum": "\uf435",
"enumMember": "\uf02b",
"event": "\ufacd",
"field": "\uf93d",
"file": "\uf723",
"folder": "\uf115",
"function": "\u0192",
"interface": "\uf417",
"keyword": "\uf1de",
"method": "\uf6a6",
"module": "\uf40d",
"operator": "\uf915",
"property": "\ue624",
"reference": "\ufa46",
"snippet": "\ue60b",
"struct": "\ufb44",
"text": "\ue612",
"typeParameter": "\uf728",
"unit": "\uf475",
"value": "\uf89f",
"variable": "\ue71b"
},
"languageserver": {
"purescript": {
"command": "purescript-language-server",
"args": ["--stdio"],
"filetypes": ["purescript"],
"trace.server": "off",
"rootPatterns": ["bower.json", "psc-package.json", "spago.dhall"],
"settings": {
"purescript": {
"addSpagoSources": true,
"addNpmPath": true,
"formatter": "purs-tidy"
}
}
},
"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",
"plugin": {
"stan": { "globalOn": true }
}
}
}
}
}
}