nvim/lsp/zls.lua
2025-09-22 16:07:34 +02:00

12 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,
}