1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 01:59:26 +00:00

[nvim] Add helm support

This commit is contained in:
2025-01-26 13:30:36 +01:00
parent bbe971d799
commit eeb1f485e8
4 changed files with 12 additions and 2 deletions

View File

@ -53,6 +53,12 @@ vim.api.nvim_create_autocmd("FileType", {
command = "setlocal shiftwidth=2 tabstop=2",
})
-- helm files indentation
vim.api.nvim_create_autocmd("FileType", {
pattern = "helm",
command = "setlocal shiftwidth=2 tabstop=2",
})
-- Disable some plugins on very large files
vim.api.nvim_create_autocmd({ "BufEnter" }, {
pattern = { "*" },

View File

@ -274,7 +274,7 @@ require("lazy").setup({
version = false,
opts = {
provider = "copilot",
auto_suggestions_provider = "copilot",
auto_suggestions_provider = "claude",
},
build = "make",
dependencies = {
@ -320,6 +320,6 @@ require("lazy").setup({
},
},
},
{ "towolf/vim-helm", ft = "helm" },
{ "robbles/logstash.vim" },
}, lazy_opts)