14 lines
392 B
Lua
14 lines
392 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
settings = {
|
|
zls = {
|
|
warn_style = true,
|
|
highlight_global_var_declarations = true,
|
|
inlay_hints_show_variable_type_hints = false,
|
|
inlay_hints_show_struct_literal_field_type = false,
|
|
inlay_hints_show_parameter_name = false,
|
|
inlay_hints_show_builtin = false,
|
|
},
|
|
},
|
|
}
|