aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2021-07-17 18:10:35 +0000
committergithub-actions <github-actions@github.com>2021-07-17 18:10:35 +0000
commit8b4adace68ec09a44e2f64add8ae6dff4b2ba949 (patch)
treec71c2bed4cead246190b2d68fa0b4803c98591d4
parentfeat: add serve-d language server (#1080) (diff)
downloadnvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.tar
nvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.tar.gz
nvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.tar.bz2
nvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.tar.lz
nvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.tar.xz
nvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.tar.zst
nvim-lspconfig-8b4adace68ec09a44e2f64add8ae6dff4b2ba949.zip
[docgen] Update CONFIG.md
skip-checks: true
-rw-r--r--CONFIG.md28
1 files changed, 27 insertions, 1 deletions
diff --git a/CONFIG.md b/CONFIG.md
index d9fd2af2..b3bedfdf 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -68,6 +68,7 @@ that config.
- [rome](#rome)
- [rust_analyzer](#rust_analyzer)
- [scry](#scry)
+- [serve_d](#serve_d)
- [solargraph](#solargraph)
- [sorbet](#sorbet)
- [sourcekit](#sourcekit)
@@ -3759,7 +3760,7 @@ require'lspconfig'.ocamllsp.setup{}
Default Values:
cmd = { "ocamllsp" }
- filetypes = { "ocamllex", "menhir", "reason", "ocamlinterface", "ocaml" }
+ filetypes = { "menhir", "ocamlinterface", "ocaml", "ocamllex", "reason" }
get_language_id = function(_, ftype)
return language_id_of[ftype]
end
@@ -5363,6 +5364,31 @@ require'lspconfig'.scry.setup{}
```
+## serve_d
+
+ https://github.com/Pure-D/serve-d
+
+ `Microsoft language server protocol implementation for D using workspace-d.`
+ Download a binary from https://github.com/Pure-D/serve-d/releases and put it in your $PATH.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.serve_d.setup{}
+```
+
+**Commands and default values:**
+```lua
+ Commands:
+
+ Default Values:
+ cmd = { "serve-d" }
+ filetypes = { "d" }
+ root_dir = util.root_pattern("dub.json", "dub.sdl", ".git")
+```
+
+
## solargraph
https://solargraph.org/