dotfiles/.config/nvim/coc-settings.json
Joey Yakimowich-Payne c19ed85b3d Update dotfiles
2021-09-12 10:07:31 -06:00

27 lines
812 B
JSON

{
"languageserver": {
"rescript": {
"enable": true,
"module": "~/.local/share/nvim/plugged/vim-rescript/server/out/server.js",
"args": ["--node-ipc"],
"filetypes": ["rescript"],
"rootPatterns": ["bsconfig.json"]
},
"nim": {
"command": "nimlsp",
"filetypes": [ "nim" ],
"trace.server": "verbose"
},
"ocaml-lsp": {
"command": "opam",
"args": ["config", "exec", "--", "ocamllsp"],
"filetypes": ["ocaml", "reason"]
},
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
"filetypes": ["haskell", "lhaskell"]
}
}
}