mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
284 B
Lua
13 lines
284 B
Lua
---@brief
|
|
---
|
|
--- https://ziggy-lang.io/documentation/ziggy-lsp/
|
|
---
|
|
--- Language server for schema files of the Ziggy data serialization format
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'ziggy', 'lsp', '--schema' },
|
|
filetypes = { 'ziggy_schema' },
|
|
root_markers = { '.git' },
|
|
}
|