I am using zed with zig plugin version 1.1 and zls. I want set up some options like in sublime text
{
"languages": {
"Zig": {
"language_servers": ["zls"]
}
},
"lsp": {
"zls": {
"settings": {
"enable_build_on_save": true,
"enable_autofix": true,
"warn_style": true,
"highlight_global_var_declarations": true
}
}
}
but it’s not working. Is there anything i should change?