diff options
| author | github-actions <github-actions@github.com> | 2021-07-17 18:10:35 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-07-17 18:10:35 +0000 |
| commit | 8b4adace68ec09a44e2f64add8ae6dff4b2ba949 (patch) | |
| tree | c71c2bed4cead246190b2d68fa0b4803c98591d4 | |
| parent | feat: add serve-d language server (#1080) (diff) | |
| download | nvim-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.md | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -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/ |
