aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/serve_d.lua
blob: 19d596bc8f45e856cfde6c2c0f1c53e5277bd32f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'serve-d' },
    filetypes = { 'd' },
    root_dir = util.root_pattern('dub.json', 'dub.sdl', '.git'),
  },
  docs = {
    description = [[
           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.
        ]],
  },
}