22 lines
448 B
Lua
22 lines
448 B
Lua
return {
|
|
"williamboman/mason.nvim",
|
|
|
|
cmd = "Mason",
|
|
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
|
|
config = function()
|
|
local icons = require("util.icons")
|
|
|
|
require("mason").setup {
|
|
ui = {
|
|
border = "rounded",
|
|
icons = {
|
|
package_installed = icons.git.file.Staged,
|
|
package_pending = icons.git.file.Unstaged,
|
|
package_uninstalled = icons.git.file.Deleted,
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
}
|