mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-07 01:26:10 +02:00
25 lines
813 B
Lua
25 lines
813 B
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
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.
|
|
]],
|
|
},
|
|
}
|