update key map mason

This commit is contained in:
asep komarudin 2023-12-03 20:48:57 +07:00
parent 94f39c4a48
commit 9ec4469cbf
2 changed files with 23 additions and 1 deletions

View file

@ -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 = "<CR>",
-- 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,