End of config for now
This commit is contained in:
19
lua/config/mason.lua
Normal file
19
lua/config/mason.lua
Normal file
@@ -0,0 +1,19 @@
|
||||
--- Ensure plugin is installed
|
||||
local ok, mason = pcall(require, "mason")
|
||||
if not ok then
|
||||
return
|
||||
end
|
||||
|
||||
--- Plugin options
|
||||
local opts = {
|
||||
ui = {
|
||||
icons = {
|
||||
package_installed = "✓",
|
||||
package_pending = "➜",
|
||||
package_uninstalled = "✗",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
--- Load plugin
|
||||
mason.setup(opts)
|
||||
Reference in New Issue
Block a user