dotfiles/.config/nvim/coc-settings.json
2023-02-27 11:14:37 -07:00

29 lines
934 B
JSON

{
"suggest.noselect": true,
"languageserver": {
"rescript": {
"enable": true,
"module": "~/.local/share/nvim/plugged/vim-rescript/server/out/server.js",
"args": ["--node-ipc"],
"filetypes": ["rescript"],
"rootPatterns": ["bsconfig.json"]
},
"nim": {
"enable": true,
"command": "nimlsp",
"filetypes": [ "nim" ]
},
"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"]
}
},
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/12.0.1/clangd_12.0.1/bin/clangd"
}