dotfiles/.config/nvim/coc-settings.json

24 lines
573 B
JSON
Raw Normal View History

2019-01-01 19:48:52 +01:00
{
2019-01-01 20:37:19 +01:00
"coc.preferences.diagnostic.errorSign": "",
"coc.preferences.diagnostic.warningSign": "",
"coc.preferences.noselect": false,
2019-01-01 19:48:52 +01:00
"languageserver": {
2019-01-01 20:37:19 +01:00
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"dockerfile": {
"command": "docker-langserver",
"filetypes": ["dockerfile"],
"args": ["--stdio"]
},
2019-01-01 19:48:52 +01:00
"golang": {
"command": "bingo",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
}
}
}