Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 458 Bytes

vim.md

File metadata and controls

26 lines (21 loc) · 458 Bytes

Vim Support

Todo: add config snippets

  • Should work with all LSP plugin on vim

coc.nvim

  • Install the coc.nvim plugin
  • Add the following snippet to the coc-setting.json file (editable via :CocConfig in NeoVim)
{
	"languageserver": {
		"terraform": {
			"command": "terraform-lsp",
			"filetypes": [
				"terraform",
				"tf"
			],
			"initializationOptions": {},
			"settings": {}
		}
	}
}