aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/serve_d.lua
blob: d0e00c6afd55d1a4036698806c90431405696c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@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' },
}