diff options
| -rw-r--r-- | doc/server_configurations.md | 40 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 40 |
2 files changed, 80 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index f70a9ba7..36c0cfc6 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -83,6 +83,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [groovyls](#groovyls) - [haxe_language_server](#haxe_language_server) - [hdl_checker](#hdl_checker) +- [helm_ls](#helm_ls) - [hhvm](#hhvm) - [hie](#hie) - [hls](#hls) @@ -3696,6 +3697,45 @@ require'lspconfig'.hdl_checker.setup{} ``` +## helm_ls + +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. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.helm_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { { "helm_ls" }, "serve" } + ``` + - `filetypes` : + ```lua + { "helm" } + ``` + - `root_dir` : + ```lua + root_pattern("Chart.yaml) + ``` + - `single_file_support` : + ```lua + true + ``` + + ## hhvm Language server for programs written in Hack diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index f70a9ba7..36c0cfc6 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -83,6 +83,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [groovyls](#groovyls) - [haxe_language_server](#haxe_language_server) - [hdl_checker](#hdl_checker) +- [helm_ls](#helm_ls) - [hhvm](#hhvm) - [hie](#hie) - [hls](#hls) @@ -3696,6 +3697,45 @@ require'lspconfig'.hdl_checker.setup{} ``` +## helm_ls + +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. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.helm_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { { "helm_ls" }, "serve" } + ``` + - `filetypes` : + ```lua + { "helm" } + ``` + - `root_dir` : + ```lua + root_pattern("Chart.yaml) + ``` + - `single_file_support` : + ```lua + true + ``` + + ## hhvm Language server for programs written in Hack |
