mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-02-22 07:28:00 +00:00
[nvim] Add helm support
This commit is contained in:
parent
bbe971d799
commit
eeb1f485e8
@ -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 = { "*" },
|
||||
|
@ -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)
|
||||
|
@ -2,11 +2,14 @@ require("copilot").setup({
|
||||
suggestion = { enabled = false },
|
||||
panel = { enabled = false },
|
||||
filetypes = {
|
||||
dockerfile = true,
|
||||
go = true,
|
||||
hcl = true,
|
||||
helm = true,
|
||||
javascript = true,
|
||||
json = true,
|
||||
lua = true,
|
||||
make = true,
|
||||
markdown = true,
|
||||
python = true,
|
||||
sh = true,
|
||||
|
@ -2,6 +2,7 @@ local servers = {
|
||||
"ansiblels",
|
||||
"bashls",
|
||||
"gopls",
|
||||
"helm_ls",
|
||||
"html",
|
||||
-- "kotlin_language_server",
|
||||
"jdtls",
|
||||
|
Loading…
x
Reference in New Issue
Block a user