Add neovim config

This commit is contained in:
Valeriy Filippov
2026-03-05 16:34:38 +03:00
commit 210e99d004
36 changed files with 845 additions and 0 deletions

6
nvim/lsp/terraformls.lua Normal file
View File

@@ -0,0 +1,6 @@
-- https://github.com/neovim/nvim-lspconfig/blob/master/lsp/terraformls.lua
return {
cmd = { 'terraform-ls', 'serve' },
filetypes = { 'terraform', 'terraform.vars' },
root_markers = { '.terraform', '.git' },
}