mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
14 lines
365 B
Lua
14 lines
365 B
Lua
---@brief
|
|
---
|
|
--- 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.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'serve-d' },
|
|
filetypes = { 'd' },
|
|
root_markers = { 'dub.json', 'dub.sdl', '.git' },
|
|
}
|