diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-04-18 06:12:47 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-04-18 06:12:47 +0000 |
| commit | 9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980 (patch) | |
| tree | 2794bb177a414c0c22caa0129ec0894652cbb4de | |
| parent | feat: add earthlyls configuration (#3111) (diff) | |
| download | nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.tar nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.tar.gz nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.tar.bz2 nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.tar.lz nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.tar.xz nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.tar.zst nvim-lspconfig-9eb6d866840df0f3fb1d2e8f34a7e0cfdf80f980.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 30 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 30 |
2 files changed, 60 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index f0210132..f86d58ef 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -71,6 +71,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [dprint](#dprint) - [drools_lsp](#drools_lsp) - [ds_pinyin_lsp](#ds_pinyin_lsp) +- [earthlyls](#earthlyls) - [ecsact](#ecsact) - [efm](#efm) - [elixirls](#elixirls) @@ -3223,6 +3224,35 @@ require'lspconfig'.ds_pinyin_lsp.setup{} ``` +## earthlyls + +https://github.com/glehmann/earthlyls + +A fast language server for earthly. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.earthlyls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "earthlyls" } + ``` + - `filetypes` : + ```lua + { "earthfile" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## ecsact https://github.com/ecsact-dev/ecsact_lsp_server diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index f0210132..f86d58ef 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -71,6 +71,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [dprint](#dprint) - [drools_lsp](#drools_lsp) - [ds_pinyin_lsp](#ds_pinyin_lsp) +- [earthlyls](#earthlyls) - [ecsact](#ecsact) - [efm](#efm) - [elixirls](#elixirls) @@ -3223,6 +3224,35 @@ require'lspconfig'.ds_pinyin_lsp.setup{} ``` +## earthlyls + +https://github.com/glehmann/earthlyls + +A fast language server for earthly. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.earthlyls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "earthlyls" } + ``` + - `filetypes` : + ```lua + { "earthfile" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## ecsact https://github.com/ecsact-dev/ecsact_lsp_server |
