Files
nix-config/.config/nvim/coc-settings.json
2020-08-27 14:31:38 -04:00

29 lines
440 B
JSON

{
"languageserver": {
"golang": {
"command": "gopls",
"filetypes": [
"go"
],
"rootPatterns": [
"go.mod",
".vim/",
".git/",
".hg/"
]
},
"terraform": {
"command": "terraform-ls",
"args": [
"serve"
],
"filetypes": [
"terraform",
"tf"
],
"initializationOptions": {},
"settings": {}
}
}
}