-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
46 lines (46 loc) · 1.35 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
{
"languageserver": {
"erlang": {
"command": "erlang_ls",
"filetypes": ["erlang"]
},
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml"
],
"filetypes": [
"hs",
"lhs",
"haskell"
],
"initializationOptions": {
"haskell": {
}
}
},
"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
}
}
}
},
"diagnostic.level": "information",
"coc.preferences.jumpCommand": "tab drop",
"elixir.pathToElixirLS": "~/elixir-ls/language_server.sh",
"snippets.ultisnips.directories": ["UltiSnips", "snips"],
"rust-analyzer.check.command": "clippy",
"rust-analyzer.checkOnSave": true
}