mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
13 lines
270 B
Lua
13 lines
270 B
Lua
---@brief
|
|
--- https://github.com/zigtools/zls
|
|
---
|
|
--- Zig LSP implementation + Zig Language Server
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'zls' },
|
|
filetypes = { 'zig', 'zir' },
|
|
root_markers = { 'zls.json', 'build.zig', '.git' },
|
|
workspace_required = false,
|
|
}
|