dotfiles/config/nvim/lua/plugins/theme.lua

20 lines
309 B
Lua
Raw Normal View History

2024-03-30 16:15:31 +00:00
return {
{
"catppuccin/nvim",
lazy = false,
opts = { style = "night" },
name = "catppuccin",
config = function()
require("catppuccin").setup({
flavour = "mocha",
})
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
},
}