diff options
| -rw-r--r-- | doc/server_configurations.md | 38 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 38 |
2 files changed, 76 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 8a25b867..c7399f81 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -97,6 +97,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [gdshader_lsp](#gdshader_lsp) - [ghcide](#ghcide) - [ghdl_ls](#ghdl_ls) +- [ginko_ls](#ginko_ls) - [gleam](#gleam) - [glint](#glint) - [glsl_analyzer](#glsl_analyzer) @@ -4455,6 +4456,43 @@ require'lspconfig'.ghdl_ls.setup{} ``` +## ginko_ls + +`ginko_ls` is meant to be a feature-complete language server for device-trees. +Language servers can be used in many editors, such as Visual Studio Code, Emacs +or Vim + +Install `ginko_ls` from https://github.com/Schottkyc137/ginko and add it to path + +`ginko_ls` doesn't require any configuration. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.ginko_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "ginko_ls" } + ``` + - `filetypes` : + ```lua + { "dts" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + + ## gleam https://github.com/gleam-lang/gleam diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 8a25b867..c7399f81 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -97,6 +97,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [gdshader_lsp](#gdshader_lsp) - [ghcide](#ghcide) - [ghdl_ls](#ghdl_ls) +- [ginko_ls](#ginko_ls) - [gleam](#gleam) - [glint](#glint) - [glsl_analyzer](#glsl_analyzer) @@ -4455,6 +4456,43 @@ require'lspconfig'.ghdl_ls.setup{} ``` +## ginko_ls + +`ginko_ls` is meant to be a feature-complete language server for device-trees. +Language servers can be used in many editors, such as Visual Studio Code, Emacs +or Vim + +Install `ginko_ls` from https://github.com/Schottkyc137/ginko and add it to path + +`ginko_ls` doesn't require any configuration. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.ginko_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "ginko_ls" } + ``` + - `filetypes` : + ```lua + { "dts" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + + ## gleam https://github.com/gleam-lang/gleam |
