68bf1acad0
This reverts commit 7ce88bb7c1d904a628634c0d96ef05100866f50e.
24 lines
521 B
Lua
24 lines
521 B
Lua
return {
|
|
enabled = true,
|
|
dependencies = {
|
|
"zig",
|
|
},
|
|
lspconfig = {
|
|
filetypes = {
|
|
"zig",
|
|
"zir",
|
|
},
|
|
cmd = { "zls", },
|
|
single_file_support = true,
|
|
settings = {
|
|
zls = {
|
|
enable_autofix = false,
|
|
enable_inlay_hints = false,
|
|
enable_build_on_save = true,
|
|
warn_style = true,
|
|
highlight_global_var_declarations = true,
|
|
},
|
|
},
|
|
},
|
|
}
|