mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
12 lines
276 B
Lua
12 lines
276 B
Lua
---@brief
|
|
--- https://github.com/zigtools/zls
|
|
---
|
|
--- Zig LSP implementation + Zig Language Server
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'zigscient' },
|
|
filetypes = { 'zig', 'zir' },
|
|
root_markers = { 'zls.json', 'build.zig', '.git' },
|
|
workspace_required = false,
|
|
}
|