1
0
mirror of https://github.com/vbrandl/dotfiles synced 2024-11-22 16:03:50 +01:00
dotfiles/editors/vim/coc-settings.json

35 lines
929 B
JSON
Raw Normal View History

2019-08-12 18:08:10 +02:00
{
"languageserver": {
"elmLS": {
"command": "elm-language-server",
"args": ["--stdio"],
"filetypes": ["elm"],
"rootPatterns": ["elm.json"],
"initializationOptions": {
"runtime": "node",
"elmPath": "elm",
"elmFormatPath": "elm-format",
"elmTestPath": "elm-test"
}
}
//"rust": {
//"command": "ra_lsp_server",
//"filetypes": ["rust"],
//"rootPatterns": ["Cargo.toml"]
//},
//"haskell": {
//"command": "hie-wrapper",
//"rootPatterns": [".stack.yaml", "cabal.config", "package.yaml"],
//"filetypes": ["hs", "lhs", "haskell"],
//"initializationOptions": {},
//"settings": {
//"languageServerHaskell": {
//"hlintOn": false,
//"maxNumberOfProblems": 10,
//"completionSnippetsOn": true
//}
//}
//}
}
}