26 lines
486 B
Lua
26 lines
486 B
Lua
-- spec: https://github.com/zigtools/zls#configuration-options
|
|
|
|
return {
|
|
enable = true,
|
|
dependencies = {
|
|
"zig",
|
|
},
|
|
-- mason = {
|
|
-- name = "zls",
|
|
-- -- version = "",
|
|
-- },
|
|
lspconfig = {
|
|
filetypes = {
|
|
"zig",
|
|
"zir",
|
|
},
|
|
cmd = { "zls", },
|
|
single_file_support = true,
|
|
settings = {
|
|
zls = {
|
|
enable_inlay_hints = false,
|
|
},
|
|
},
|
|
},
|
|
}
|