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

21 lines
492 B
JSON
Raw Normal View History

2019-12-06 19:33:20 +01:00
{
"languageserver": {
"golang": {
2020-03-16 09:12:13 +01:00
"command": "/home/bca/.go/bin/gopls",
"args" : ["-remote=auto"],
2019-12-06 19:33:20 +01:00
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
2020-03-16 09:12:13 +01:00
"filetypes": ["go"],
"initializationOptions": {
"usePlaceholders": true
}
2019-12-06 19:33:20 +01:00
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
}
2020-10-05 13:19:22 +02:00
},
"java.errors.incompleteClasspath.severity": "ignore"
2019-12-06 19:33:20 +01:00
}