32 lines
623 B
Lua
32 lines
623 B
Lua
|
local present, mason = pcall(require, "mason")
|
||
|
|
||
|
vim.api.nvim_create_augroup("_mason", { clear = true })
|
||
|
|
||
|
local options = {
|
||
|
PATH = "skip",
|
||
|
|
||
|
ui = {
|
||
|
icons = {
|
||
|
package_pending = " ",
|
||
|
package_installed = " ",
|
||
|
package_uninstalled = " ﮊ",
|
||
|
},
|
||
|
|
||
|
keymaps = {
|
||
|
toggle_server_expand = "<CR>",
|
||
|
install_server = "i",
|
||
|
update_server = "u",
|
||
|
check_server_version = "c",
|
||
|
update_all_servers = "U",
|
||
|
check_outdated_servers = "C",
|
||
|
uninstall_server = "X",
|
||
|
cancel_installation = "<C-c>",
|
||
|
},
|
||
|
},
|
||
|
|
||
|
max_concurrent_installers = 10,
|
||
|
}
|
||
|
|
||
|
|
||
|
mason.setup(options)
|