diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-12-14 19:00:19 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-12-14 19:00:19 +0000 |
| commit | 161c51c071f1c4995189cb61a39a1f077253662e (patch) | |
| tree | 7a3d38695b359479849721111883ebfa160765e3 | |
| parent | feat: hylo_ls #4237 (diff) | |
| download | nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.tar nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.tar.gz nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.tar.bz2 nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.tar.lz nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.tar.xz nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.tar.zst nvim-lspconfig-161c51c071f1c4995189cb61a39a1f077253662e.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 32 | ||||
| -rw-r--r-- | doc/configs.txt | 22 |
2 files changed, 54 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 5a0fd853..10fb55d2 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -149,6 +149,7 @@ Nvim by running `:help lspconfig-all`. - [html](#html) - [htmx](#htmx) - [hydra_lsp](#hydra_lsp) +- [hylo_ls](#hylo_ls) - [hyprls](#hyprls) - [idris2_lsp](#idris2_lsp) - [intelephense](#intelephense) @@ -5844,6 +5845,37 @@ Default config: --- +## hylo_ls + +https://github.com/hylo-lang/hylo-language-server + +A language server for the Hylo programming language. + +Snippet to enable the language server: +```lua +vim.lsp.enable('hylo_ls') +``` + +Default config: +- `cmd` : + ```lua + { "hylo-language-server", "--stdio" } + ``` +- `filetypes` : + ```lua + { "hylo" } + ``` +- `root_markers` : + ```lua + { ".git" } + ``` +- `settings` : + ```lua + {} + ``` + +--- + ## hyprls https://github.com/hyprland-community/hyprls diff --git a/doc/configs.txt b/doc/configs.txt index 5d5bc5d1..ce10912a 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -4209,6 +4209,28 @@ Default config: < ------------------------------------------------------------------------------ +hylo_ls + +https://github.com/hylo-lang/hylo-language-server + +A language server for the Hylo programming language. + +Snippet to enable the language server: >lua + vim.lsp.enable('hylo_ls') + + +Default config: +- cmd: >lua + { "hylo-language-server", "--stdio" } +- filetypes: >lua + { "hylo" } +- root_markers: >lua + { ".git" } +- settings: >lua + {} +< + +------------------------------------------------------------------------------ hyprls |
