diff --git a/neovim/lua/plugins/ide.lua b/neovim/lua/plugins/ide.lua index e7b5d5a..c491f72 100644 --- a/neovim/lua/plugins/ide.lua +++ b/neovim/lua/plugins/ide.lua @@ -54,6 +54,15 @@ vim.lsp.config("eslint", { end, }) +vim.lsp.config("zls", { + settings = { + enable_build_on_save = true, + inlay_hints_hide_redundant_param_names = true, + inlay_hints_hide_redundant_param_names_last_token = true, + warn_style = true, + }, +}) + vim.lsp.enable("uiua") return {