mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01: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' },
|
|
}
|