Files
nix-config/.config/nvim/coc-settings.json
2021-01-09 23:41:29 -05:00

35 lines
532 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": {}
},
"nix": {
"command": "rnix-lsp",
"filetypes": [
"nix"
]
}
}
}