dotfiles/dot_config/nvim/coc-settings.json
2020-11-30 16:24:17 -06:00

37 lines
831 B
JSON

{
"python.jediEnabled": false,
"languageserver": {
"ocaml": {
"command": "opam",
"args": [
"config",
"exec",
"--",
"ocaml-language-server",
"--stdio"
],
"filetypes": [
"ocaml",
"reason"
]
},
"haskell": {
"command": "ghcide",
"args": [
"--lsp"
],
"rootPatterns": [
".stack.yaml",
".hie-bios",
"BUILD.bazel",
"cabal.config",
"package.yaml"
],
"filetypes": [
"hs",
"lhs",
"haskell"
]
}
}
}