diff options
| -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 |
