mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-10 12:35:47 +08:00
21 lines
404 B
Lua
21 lines
404 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'hydra-lsp' },
|
|
filetypes = { 'yaml' },
|
|
root_dir = util.root_pattern '.git',
|
|
single_file_support = true,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/Retsediv/hydra-lsp
|
|
|
|
LSP for Hydra Python package config files.
|
|
]],
|
|
default_config = {
|
|
root_dir = [[util.root_pattern '.git']],
|
|
},
|
|
},
|
|
}
|