dotfiles/dot_config/nvim/coc-settings.json
2020-06-15 03:18:21 -05:00

65 lines
1.5 KiB
JSON

{
"python.jediEnabled": false,
"languageserver": {
"python": {
"command": "python",
"args": [
"-mpyls",
"-vv"
],
"filetypes": [
"python"
],
"settings": {
"plugins": {
"pyls_mypy": {
"enabled": true,
"live_mode": false
}
}
}
},
"ocaml": {
"command": "opam",
"args": [
"config",
"exec",
"--",
"ocaml-language-server",
"--stdio"
],
"filetypes": [
"ocaml",
"reason"
]
},
"golang": {
"command": "gopls",
"rootPatterns": [
"go.mod"
],
"disableWorkspaceFolders": true,
"filetypes": [
"go"
]
},
"haskell": {
"command": "ghcide",
"args": [
"--lsp"
],
"rootPatterns": [
".stack.yaml",
".hie-bios",
"BUILD.bazel",
"cabal.config",
"package.yaml"
],
"filetypes": [
"hs",
"lhs",
"haskell"
]
}
}
}