diff options
| author | github-actions <github-actions@github.com> | 2023-04-13 10:38:54 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-04-13 10:38:54 +0000 |
| commit | 7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6 (patch) | |
| tree | ba727b87105057da3b0a59e5ddcbf8b3c414985d | |
| parent | feat: add helm_ls support (#2558) (diff) | |
| download | nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.tar nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.tar.gz nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.tar.bz2 nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.tar.lz nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.tar.xz nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.tar.zst nvim-lspconfig-7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6.zip | |
docs: update server_configurations.md
skip-checks: true
| -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 |
