nvim/lua/custom/plugins/catppuccin.lua
2024-12-21 14:20:54 -05:00

16 lines
486 B
Lua

return {
'catppuccin/nvim',
name = 'catppuccin',
opts = { transparent_background = false },
priority = 1000,
init = function()
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'catppuccin-mocha'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
end,
}