dotfiles/dot_config/nvim/coc-settings.json

40 lines
958 B
JSON
Raw Normal View History

2020-05-07 04:20:54 +00:00
{
2020-06-08 16:11:42 +00:00
"python.jediEnabled": false,
2021-01-25 22:21:29 +00:00
"python.venvFolders": ["~/.local/share/virtualenvs"],
"rust-analyzer.diagnostics.disabled": ["unresolved-proc-macro"],
2020-06-08 16:11:42 +00:00
"languageserver": {
"ocaml": {
"command": "opam",
"args": [
"config",
"exec",
"--",
"ocaml-language-server",
"--stdio"
],
"filetypes": [
"ocaml",
"reason"
]
},
2020-06-15 08:18:21 +00:00
"haskell": {
"command": "ghcide",
"args": [
"--lsp"
],
"rootPatterns": [
".stack.yaml",
".hie-bios",
"BUILD.bazel",
"cabal.config",
"package.yaml"
],
"filetypes": [
"hs",
"lhs",
"haskell"
]
2020-06-08 16:11:42 +00:00
}
}
2020-05-07 04:20:54 +00:00
}