mirror of
https://github.com/anthonyoteri/dotfiles.git
synced 2026-06-05 15:46:54 -04:00
7e64c92952
Signed-off-by: Anthony Oteri <4360016+anthonyoteri@users.noreply.github.com>
25 lines
763 B
Lua
25 lines
763 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
opts = {
|
|
flavour = "mocha", -- Choose: latte, frappe, macchiato, mocha
|
|
transparent_background = true,
|
|
integrations = {
|
|
cmp = true,
|
|
gitsigns = true,
|
|
nvimtree = true,
|
|
notify = true,
|
|
mini = { enabled = true },
|
|
navic = { enabled = true, custom_bg = "lualine" },
|
|
telescope = true,
|
|
which_key = true,
|
|
-- Add other integrations as needed
|
|
},
|
|
dim_inactive = { enabled = false },
|
|
},
|
|
},
|
|
{ "LazyVim/LazyVim", opts = { colorscheme = "catppuccin" } },
|
|
}
|