diff --git a/lua/user/lsp/mason.lua b/lua/user/lsp/mason.lua index c6088b7..ef7ce1a 100644 --- a/lua/user/lsp/mason.lua +++ b/lua/user/lsp/mason.lua @@ -35,7 +35,23 @@ local settings = { -- package_uninstalled = "◍", package_pending = " ", package_installed = " ", - package_uninstalled = "◍", + package_uninstalled = " ", + }, + keymaps = { + -- Keymap to expand a server in the UI + toggle_server_expand = "", + -- Keymap to install the server under the current cursor position + install_server = "i", + -- Keymap to reinstall/update the server under the current cursor position + update_server = "u", + -- Keymap to check for new version for the server under the current cursor position + check_server_version = "c", + -- Keymap to update all installed servers + update_all_servers = "U", + -- Keymap to check which installed servers are outdated + check_outdated_servers = "C", + -- Keymap to uninstall a server + uninstall_server = "X", }, }, log_level = vim.log.levels.INFO, diff --git a/lua/user/webdevicons.lua b/lua/user/webdevicons.lua index beb8863..0352d4d 100644 --- a/lua/user/webdevicons.lua +++ b/lua/user/webdevicons.lua @@ -57,6 +57,12 @@ material_icon.setup({ cterm_color = "220", name = "svelte", }, + -- ["go"] = { + -- icon = "󰟓", + -- color = "#0FBFCF", + -- cterm_color = "220", + -- name = "go", + -- }, }, color_icons = true, default = true,