Files
nixos-dotfiles/home/config/nvim/lua/plugins/catppuccin.lua
T
2026-06-22 17:01:45 -05:00

21 lines
502 B
Lua

return {
-- Catppuccin theme with transparency
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
opts = {
flavour = "mocha", -- Choose "latte", "frappe", "macchiato", or "mocha"
transparent_background = true,
custom_highlights = function(colors)
return {
VertSplit = { fg = colors.overlay0 },
}
end,
},
},
-- Override LazyVim's default colorscheme
{ "LazyVim/LazyVim", opts = { colorscheme = "catppuccin" } },
}