mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 17:03:36 +02:00
update key map mason
This commit is contained in:
parent
94f39c4a48
commit
9ec4469cbf
2 changed files with 23 additions and 1 deletions
|
@ -35,7 +35,23 @@ local settings = {
|
||||||
-- package_uninstalled = "◍",
|
-- package_uninstalled = "◍",
|
||||||
package_pending = " ",
|
package_pending = " ",
|
||||||
package_installed = " ",
|
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,
|
log_level = vim.log.levels.INFO,
|
||||||
|
|
|
@ -57,6 +57,12 @@ material_icon.setup({
|
||||||
cterm_color = "220",
|
cterm_color = "220",
|
||||||
name = "svelte",
|
name = "svelte",
|
||||||
},
|
},
|
||||||
|
-- ["go"] = {
|
||||||
|
-- icon = "",
|
||||||
|
-- color = "#0FBFCF",
|
||||||
|
-- cterm_color = "220",
|
||||||
|
-- name = "go",
|
||||||
|
-- },
|
||||||
},
|
},
|
||||||
color_icons = true,
|
color_icons = true,
|
||||||
default = true,
|
default = true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue