12 lines
182 B
Lua
12 lines
182 B
Lua
local status, catppuccin = pcall(require, "catppuccin")
|
|
if not status then
|
|
return
|
|
end
|
|
|
|
catppuccin.setup({
|
|
integrations = {
|
|
notify = true,
|
|
mason = true,
|
|
}
|
|
})
|