diff options
| author | qvalentin <36446499+qvalentin@users.noreply.github.com> | 2025-06-08 03:20:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-07 18:20:55 -0700 |
| commit | cd864ac0d4f253602fb176772389a4eeb16f8a57 (patch) | |
| tree | a42a03c67574abb8029c415e1e4da944dc7054ad /lua/lspconfig/configs/helm_ls.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.tar nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.tar.gz nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.tar.bz2 nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.tar.lz nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.tar.xz nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.tar.zst nvim-lspconfig-cd864ac0d4f253602fb176772389a4eeb16f8a57.zip | |
fix(helm_ls,yamlls): support custom filetype for helm-ls #3893
Diffstat (limited to 'lua/lspconfig/configs/helm_ls.lua')
| -rw-r--r-- | lua/lspconfig/configs/helm_ls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs/helm_ls.lua b/lua/lspconfig/configs/helm_ls.lua index 2bd77326..0149c508 100644 --- a/lua/lspconfig/configs/helm_ls.lua +++ b/lua/lspconfig/configs/helm_ls.lua @@ -3,7 +3,7 @@ local util = require 'lspconfig.util' return { default_config = { cmd = { 'helm_ls', 'serve' }, - filetypes = { 'helm' }, + filetypes = { 'helm', 'yaml.helm-values' }, root_dir = util.root_pattern 'Chart.yaml', single_file_support = true, capabilities = { |
