diff options
| -rw-r--r-- | doc/server_configurations.md | 33 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 33 |
2 files changed, 66 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 63e15e0c..cf4c7b91 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -61,6 +61,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [gdscript](#gdscript) - [ghcide](#ghcide) - [ghdl_ls](#ghdl_ls) +- [gleam](#gleam) - [glint](#glint) - [glslls](#glslls) - [golangci_lint_ls](#golangci_lint_ls) @@ -2530,6 +2531,38 @@ require'lspconfig'.ghdl_ls.setup{} ``` +## gleam + +https://github.com/gleam-lang/gleam + +A language server for Gleam Programming Language. +[Installation](https://gleam.run/getting-started/installing/) + +It can be i + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.gleam.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "gleam", "lsp" } + ``` + - `filetypes` : + ```lua + { "gleam" } + ``` + - `root_dir` : + ```lua + root_pattern("gleam.toml", ".git") + ``` + + ## glint https://github.com/typed-ember/glint diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 63e15e0c..cf4c7b91 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -61,6 +61,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [gdscript](#gdscript) - [ghcide](#ghcide) - [ghdl_ls](#ghdl_ls) +- [gleam](#gleam) - [glint](#glint) - [glslls](#glslls) - [golangci_lint_ls](#golangci_lint_ls) @@ -2530,6 +2531,38 @@ require'lspconfig'.ghdl_ls.setup{} ``` +## gleam + +https://github.com/gleam-lang/gleam + +A language server for Gleam Programming Language. +[Installation](https://gleam.run/getting-started/installing/) + +It can be i + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.gleam.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "gleam", "lsp" } + ``` + - `filetypes` : + ```lua + { "gleam" } + ``` + - `root_dir` : + ```lua + root_pattern("gleam.toml", ".git") + ``` + + ## glint https://github.com/typed-ember/glint |
