mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:40:06 +08:00
23 lines
448 B
Lua
Vendored
23 lines
448 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'cuelsp' },
|
|
filetypes = { 'cue' },
|
|
root_dir = function(fname)
|
|
return util.root_pattern('cue.mod', '.git')(fname)
|
|
end,
|
|
single_file_support = true,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/dagger/cuelsp
|
|
|
|
Dagger's lsp server for cuelang.
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("cue.mod", ".git")]],
|
|
},
|
|
},
|
|
}
|