dotfiles/dot_config/nvim/coc-settings.json

56 lines
1.2 KiB
JSON
Raw Normal View History

2020-05-07 04:20:54 +00:00
{
2020-06-08 16:11:42 +00:00
"python.jediEnabled": false,
"languageserver": {
2020-06-15 08:18:21 +00:00
"python": {
"command": "python",
"args": [
"-mpyls",
"-vv"
],
"filetypes": [
"python"
],
"settings": {
"plugins": {
"pyls_mypy": {
"enabled": true,
"live_mode": false
}
}
}
},
2020-06-08 16:11:42 +00:00
"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
}