mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02:00
13 lines
249 B
Lua
13 lines
249 B
Lua
---@brief
|
|
---
|
|
--- https://ziggy-lang.io/documentation/ziggy-lsp/
|
|
---
|
|
--- Language server for the Ziggy data serialization format
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'ziggy', 'lsp' },
|
|
filetypes = { 'ziggy' },
|
|
root_markers = { '.git' },
|
|
}
|