-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
46 lines (46 loc) · 964 Bytes
/
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
{
"diagnostic.enable": true,
"codeLens.enable": true,
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"filetypes": ["haskell", "lhaskell"]
},
"html": {
"command": "html-languageserver",
"filetypes": ["html"]
},
"intelephense": {
"command": "intelephense",
"args": ["--stdio"],
"filetypes": ["php"]
},
"lua": {
"command": "lua-lsp",
"filetypes": ["lua"]
},
"nix": {
"command": "rnix-lsp",
"filetypes": ["nix"]
},
"python": {
"command": "pyls",
"filetypes": ["python"]
},
"scala": {
"command": "metals-vim",
"filetypes": ["scala"]
},
"tex": {
"command":"texlab",
"filetypes": ["tex"]
}
}
}