chore(neovim): update helm-ls LSP configuration

This commit is contained in:
Yorick Barbanneau 2025-09-09 17:28:28 +02:00
parent 7994ecd86c
commit 7c8685e7da
Signed by: ephase
GPG key ID: 4447A19BBEDB8DBA

View file

@ -1,7 +1,8 @@
return {
cmd = { 'helm_ls', 'serve' },
filetypes = { 'helm' },
root_markers = { 'Chart.yaml' },
filetypes = { 'helm', 'yaml.helm-values' },
single_file_support = true,
root_markers = { 'values.yaml', 'Chart.yaml' },
capabilities = {
workspace = {
didChangeWatchedFiles = {
@ -18,9 +19,7 @@ return {
showdiagnosticsdirectly = false,
path = "yaml-language-server",
config = {
schemas = {
kubernetes = "template/**",
},
schemas = {},
completion = true,
hover = true,
}