Configure CoC. It doesn't work as well as LSP by itself, though.

This commit is contained in:
Danila Fedorin 2019-05-04 16:43:15 -07:00
parent 96b6276cc7
commit 223a68e639
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
"languageserver": {
"clangd": {
"command": "clangd",
"filetypes": ["c", "cpp"],
"rootPatterns": ["compile_flags.txt", "compile_commands.json" ]
},
"haskell": {
"command": "hie-wrapper",
"filetypes": ["haskell"],
"rootPatterns": [".stack.yaml", "cabal.config", "package.yaml"]
},
"scry": {
"command": "scry",
"filetypes": ["crystal"],
"rootPatterns": ["shard.yml"]
}
}
}