summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/serve_d.lua
blob: 09d1b108c32a59c7c2c509e985ecea673e0ec648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.
        ]],
    default_config = {
      root_dir = [[util.root_pattern("dub.json", "dub.sdl", ".git")]],
    },
  },
}