-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
42 lines (42 loc) · 1.13 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
{
"languageserver": {
"haskell": {
"command": "/opt/homebrew/Cellar/haskell-language-server/1.6.1.0/bin/haskell-language-server-wrapper",
"args": [
"--lsp"
],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml",
"hie.yaml"
],
"filetypes": [
"haskell",
"lhaskell"
]
},
"csharp-ls": {
"command": "csharp-ls",
"filetypes": ["cs"],
"rootPatterns": ["*.csproj", ".vim/", ".git/", ".hg/"]
}
},
"explorer.width": 30,
"explorer.icon.enableNerdfont": true,
"explorer.previewAction.onHover": false,
"explorer.keyMappings.global": {
"<cr>": ["expandable?", "expand", "open"],
"v": "open:vsplit",
"h": "open:split"
},
"explorer.git.enable": true,
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/14.0.3/clangd_14.0.3/bin/clangd",
"diagnostic.virtualTextCurrentLineOnly": false,
"diagnostic.virtualText": true,
"diagnostic.checkCurrentLine": true,
"hover.floatMaxHeight": 200,
"eslint.autoFixOnSave": true,
"suggest.noselect": true
}