diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-02-21 06:15:59 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-02-21 06:15:59 +0000 |
| commit | aa199c5bbdbb7fd28b56212a89206f13db02799e (patch) | |
| tree | 38a9219f3c67dc9fd6fa20ceebbd1cdf9a204965 | |
| parent | feat: add gdshader-lsp support (#3018) (diff) | |
| download | nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.tar nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.tar.gz nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.tar.bz2 nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.tar.lz nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.tar.xz nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.tar.zst nvim-lspconfig-aa199c5bbdbb7fd28b56212a89206f13db02799e.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 a487a5e0..af93a4a8 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [fstar](#fstar) - [futhark_lsp](#futhark_lsp) - [gdscript](#gdscript) +- [gdshader_lsp](#gdshader_lsp) - [ghcide](#ghcide) - [ghdl_ls](#ghdl_ls) - [gleam](#gleam) @@ -4129,6 +4130,35 @@ require'lspconfig'.gdscript.setup{} ``` +## gdshader_lsp + +https://github.com/godofavacyn/gdshader-lsp + +A language server for the Godot Shading language. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.gdshader_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "gdshader-lsp", "--stdio" } + ``` + - `filetypes` : + ```lua + { "gdshader", "gdshaderinc" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## ghcide https://github.com/digital-asset/ghcide diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index a487a5e0..af93a4a8 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -90,6 +90,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [fstar](#fstar) - [futhark_lsp](#futhark_lsp) - [gdscript](#gdscript) +- [gdshader_lsp](#gdshader_lsp) - [ghcide](#ghcide) - [ghdl_ls](#ghdl_ls) - [gleam](#gleam) @@ -4129,6 +4130,35 @@ require'lspconfig'.gdscript.setup{} ``` +## gdshader_lsp + +https://github.com/godofavacyn/gdshader-lsp + +A language server for the Godot Shading language. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.gdshader_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "gdshader-lsp", "--stdio" } + ``` + - `filetypes` : + ```lua + { "gdshader", "gdshaderinc" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## ghcide https://github.com/digital-asset/ghcide |
