mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
29 lines
590 B
Lua
29 lines
590 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
lazy = false, -- Make sure it loads immediately
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "mocha",
|
|
integrations = {
|
|
bufferline = true,
|
|
cmp = true,
|
|
gitsigns = true,
|
|
nvimtree = true,
|
|
telescope = true,
|
|
notify = false,
|
|
mini = true,
|
|
},
|
|
})
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
}
|