diff --git a/.config/nvim/coc-settings.json b/.config/nvim/coc-settings.json new file mode 100644 index 0000000..97ea431 --- /dev/null +++ b/.config/nvim/coc-settings.json @@ -0,0 +1,25 @@ +{ + "languageserver": { + "golang": { + "command": "gopls", + "filetypes": [ + "go" + ], + "rootPatterns": [ + "go.mod", + ".vim/", + ".git/", + ".hg/" + ] + }, + "terraform": { + "command": "terraform-lsp", + "filetypes": [ + "terraform", + "tf" + ], + "initializationOptions": {}, + "settings": {} + } + } +}