20 lines
309 B
Lua
20 lines
309 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
lazy = false,
|
|
opts = { style = "night" },
|
|
name = "catppuccin",
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "mocha",
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
}
|