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

27 lines
481 B
Lua
Raw Normal View History

2024-03-30 16:15:31 +00:00
return {
{
"catppuccin/nvim",
lazy = false,
name = "catppuccin",
config = function()
require("catppuccin").setup({
flavour = "mocha",
2024-11-28 00:57:28 +00:00
default_integrations = true,
integrations = {
mason = true,
noice = true,
notifier = true,
notify = true,
snacks = true,
},
2024-03-30 16:15:31 +00:00
})
end,
},
{
"LazyVim/LazyVim",
opts = {
2024-11-28 00:57:28 +00:00
colorscheme = "catppuccin-mocha",
2024-03-30 16:15:31 +00:00
},
},
}