16 lines
312 B
Lua
16 lines
312 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
integrations = {
|
|
mason = true,
|
|
},
|
|
})
|
|
-- setup must be called before loading
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
},
|
|
}
|