aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2021-11-15 09:07:17 +0000
committergithub-actions <github-actions@github.com>2021-11-15 09:07:17 +0000
commitcc1a1000106b01797d9d787e4dd3c9059e3d5dc1 (patch)
treed303b01c27a164a10ab7957a78b528398f5f7a8b /doc
parentfeat: add support for lelwel language server (#1205) (diff)
downloadnvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.tar
nvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.tar.gz
nvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.tar.bz2
nvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.tar.lz
nvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.tar.xz
nvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.tar.zst
nvim-lspconfig-cc1a1000106b01797d9d787e4dd3c9059e3d5dc1.zip
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
-rw-r--r--doc/server_configurations.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index cdbf12a6..253e0a7f 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -58,6 +58,7 @@ that config.
- [kotlin_language_server](#kotlin_language_server)
- [lean3ls](#lean3ls)
- [leanls](#leanls)
+- [lelwel_ls](#lelwel_ls)
- [lemminx](#lemminx)
- [ltex](#ltex)
- [metals](#metals)
@@ -3570,6 +3571,40 @@ require'lspconfig'.leanls.setup{}
```
+## lelwel_ls
+
+https://github.com/0x2a-42/lelwel
+
+Language server for lelwel grammars.
+
+You can install `lelwel-ls` via cargo:
+```sh
+cargo install --features="lsp" lelwel
+```
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.lelwel_ls.setup{}
+```
+
+**Commands and default values:**
+```lua
+ Commands:
+
+ Default Values:
+ cmd = { "lelwel-ls" }
+ filetypes = { "llw" }
+ root_dir = function(path)
+ if M.path.is_dir(M.path.join(path, '.git')) then
+ return path
+ end
+ end)
+ end
+```
+
+
## lemminx
https://github.com/eclipse/lemminx