Files
nvim/lua/holger/plugins/colorscheme.lua

12 lines
242 B
Lua

return {
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
vim.cmd([[colorscheme catppuccin]])
end,
},
}