dotfiles/dot_config/nvim/coc-settings.json

31 lines
762 B
JSON
Raw Normal View History

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