mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
215 B
Lua
13 lines
215 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/dagger/cuelsp
|
|
---
|
|
--- Dagger's lsp server for cuelang.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'cuelsp' },
|
|
filetypes = { 'cue' },
|
|
root_markers = { 'cue.mod', '.git' },
|
|
}
|