diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-30 05:36:23 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-30 05:36:23 +0000 |
| commit | fcf153fbbf1facd16a71d46b92be8be495123a9f (patch) | |
| tree | 52aa16f622a481b4cd8e64f6f1204babf4b20446 /doc | |
| parent | feat: add hydra-lsp (#2919) (diff) | |
| download | nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.tar nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.tar.gz nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.tar.bz2 nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.tar.lz nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.tar.xz nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.tar.zst nvim-lspconfig-fcf153fbbf1facd16a71d46b92be8be495123a9f.zip | |
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.md | 34 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 34 |
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index d8eb885f..d9eee318 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -108,6 +108,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [hoon_ls](#hoon_ls) - [html](#html) - [htmx](#htmx) +- [hydra_lsp](#hydra_lsp) - [idris2_lsp](#idris2_lsp) - [intelephense](#intelephense) - [java_language_server](#java_language_server) @@ -4720,6 +4721,39 @@ require'lspconfig'.htmx.setup{} ``` +## hydra_lsp + +https://github.com/Retsediv/hydra-lsp + +LSP for Hydra Python package config files. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.hydra_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "hydra-lsp" } + ``` + - `filetypes` : + ```lua + { "yaml" } + ``` + - `root_dir` : + ```lua + util.root_pattern '.git' + ``` + - `single_file_support` : + ```lua + true + ``` + + ## idris2_lsp https://github.com/idris-community/idris2-lsp diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index d8eb885f..d9eee318 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -108,6 +108,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [hoon_ls](#hoon_ls) - [html](#html) - [htmx](#htmx) +- [hydra_lsp](#hydra_lsp) - [idris2_lsp](#idris2_lsp) - [intelephense](#intelephense) - [java_language_server](#java_language_server) @@ -4720,6 +4721,39 @@ require'lspconfig'.htmx.setup{} ``` +## hydra_lsp + +https://github.com/Retsediv/hydra-lsp + +LSP for Hydra Python package config files. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.hydra_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "hydra-lsp" } + ``` + - `filetypes` : + ```lua + { "yaml" } + ``` + - `root_dir` : + ```lua + util.root_pattern '.git' + ``` + - `single_file_support` : + ```lua + true + ``` + + ## idris2_lsp https://github.com/idris-community/idris2-lsp |
