mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-10 12:05:49 +08:00
17 lines
362 B
Lua
17 lines
362 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'debputy', 'lsp', 'server' },
|
||
|
filetypes = { 'debcontrol', 'debcopyright', 'debchangelog', 'make', 'yaml' },
|
||
|
root_dir = util.root_pattern 'debian',
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://salsa.debian.org/debian/debputy
|
||
|
|
||
|
Language Server for Debian packages.
|
||
|
]],
|
||
|
},
|
||
|
}
|