Files
nvim/lua/nvchad/configs/mason.lua
T
siduck 230b6c867e minor refactoring
moved the lsp.signature to ui repo to be available for non-nvchad users too
2024-06-27 09:28:14 +05:30

31 lines
644 B
Lua

dofile(vim.g.base46_cache .. "mason")
local options = {
ensure_installed = { "lua-language-server", "stylua" }, -- not an option from mason.nvim
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,
}
return options