20 lines
301 B
Lua
20 lines
301 B
Lua
return {
|
|
-- Lazy
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
opts = {
|
|
flavour = "mocha",
|
|
-- transparent_background = true,
|
|
},
|
|
},
|
|
-- somewhere in your config:
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
}
|