vim-config/coc-settings.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2020-01-08 19:03:38 +00:00
{
"languageserver": {
"haskell": {
"trace.server": "verbose",
"command": "hie-wrapper",
"args": ["--lsp", "-d", "-l", "/home/jule/lang-server.log"],
"rootPatterns": [
2020-01-08 23:37:34 +00:00
"*.cabal",
2020-01-08 19:03:38 +00:00
"stack.yaml",
"cabal.config",
"cabal.project",
"package.yaml"
],
"filetypes": [
"hs",
"lhs",
"haskell"
],
"initializationOptions": {
"languageServerHaskell": {
"hlintOn": false
}
}
2020-01-11 02:51:56 +00:00
},
"bash": {
"trace.server": "verbose",
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
// install: https://github.com/mattn/efm-langserver
// and: https://github.com/Kuniwak/vint
"efm": {
"command": "efm-langserver",
"args": [],
// custom config path
//"args": ["-c", "/home/jule/.config/efm-langserver/config.yaml"],
"filetypes": ["vim"]
2020-01-08 19:03:38 +00:00
}
},
2020-01-08 23:37:34 +00:00
"coc.preferences.hoverTarget": "float",
2020-01-08 19:03:38 +00:00
"suggest.floatEnable": true
}