diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-22 06:37:09 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-22 06:37:09 +0000 |
| commit | 24662f92c18edd397ef12d635b11dbdedef2d094 (patch) | |
| tree | ec1219599fc007ad6e7de8f52a6945b3ddb3c828 | |
| parent | feat: adds ginko_ls support (#3086) (diff) | |
| download | nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.tar nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.tar.gz nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.tar.bz2 nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.tar.lz nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.tar.xz nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.tar.zst nvim-lspconfig-24662f92c18edd397ef12d635b11dbdedef2d094.zip | |
docs: update server_configurations.md
skip-checks: true
| -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 |
