nvim-lspconfig/lsp/serve_d.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' },
}