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