dotfiles/dot_config/nvim/coc-settings.json
2020-06-08 11:11:42 -05:00

29 lines
634 B
JSON

{
"python.jediEnabled": false,
"languageserver": {
"ocaml": {
"command": "opam",
"args": [
"config",
"exec",
"--",
"ocaml-language-server",
"--stdio"
],
"filetypes": [
"ocaml",
"reason"
]
},
"golang": {
"command": "gopls",
"rootPatterns": [
"go.mod"
],
"disableWorkspaceFolders": true,
"filetypes": [
"go"
]
}
}
}