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

16 lines
310 B
JSON
Raw Normal View History

2019-12-06 19:33:20 +01:00
{
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
}
}
}