dotfiles/dot_config/nvim/coc-settings.json

30 lines
634 B
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": {
"ocaml": {
"command": "opam",
"args": [
"config",
"exec",
"--",
"ocaml-language-server",
"--stdio"
],
"filetypes": [
"ocaml",
"reason"
]
},
"golang": {
"command": "gopls",
"rootPatterns": [
"go.mod"
],
"disableWorkspaceFolders": true,
"filetypes": [
"go"
]
}
}
2020-05-07 04:20:54 +00:00
}