Setup lsp for: terraform, helm. Setup plugs for: cursor, helm, terraform. Setup autoformat on save via lsp.

This commit is contained in:
jannawro 2023-11-03 12:37:11 +01:00
parent 0c3d773fc0
commit 529955edf3
6 changed files with 51 additions and 25 deletions

View file

@ -0,0 +1,3 @@
return {
'DanilaMihailov/beacon.nvim'
}

View file

@ -10,7 +10,15 @@ return {
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
require('neo-tree').setup {
filesystem = {
filtered_items = {
visible = true, -- This is what you want: If you set this to `true`, all "hide" just mean "dimmed out"
hide_dotfiles = false,
hide_gitignored = true,
},
}
}
end,
}

View file

@ -0,0 +1,3 @@
return {
'towolf/vim-helm'
}

View file

@ -0,0 +1,3 @@
return {
'hashivim/vim-terraform'
}