Files
nvim/lua/plugins/ui/colorscheme.lua
Zelong Kuang 9d1536e5af Update
2025-05-13 19:37:28 +10:00

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",
},
},
}