aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/helm_ls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/helm_ls.lua')
-rw-r--r--lsp/helm_ls.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/lsp/helm_ls.lua b/lsp/helm_ls.lua
new file mode 100644
index 00000000..b27a6993
--- /dev/null
+++ b/lsp/helm_ls.lua
@@ -0,0 +1,23 @@
+---@brief
+---
+---https://github.com/mrjosh/helm-ls
+--
+-- Helm Language server. (This LSP is in early development)
+--
+-- `helm Language server` can be installed by following the instructions [here](https://github.com/mrjosh/helm-ls).
+--
+-- The default `cmd` assumes that the `helm_ls` binary can be found in `$PATH`.
+--
+-- If need Helm file highlight use [vim-helm](https://github.com/towolf/vim-helm) plugin.
+return {
+ cmd = { 'helm_ls', 'serve' },
+ filetypes = { 'helm' },
+ root_markers = { 'Chart.yaml' },
+ capabilities = {
+ workspace = {
+ didChangeWatchedFiles = {
+ dynamicRegistration = true,
+ },
+ },
+ },
+}