dotfiles/.config/nvim/lua/plugins/theme.lua
2024-03-30 14:26:57 -04:00

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",
},
},
}