diff options
Diffstat (limited to 'doc')
| -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 https://github.com/hyprland-community/hyprls |
