16 lines
381 B
Lua
16 lines
381 B
Lua
return {
|
|
'catppuccin/nvim',
|
|
name = 'catppuccin',
|
|
priority = 1000,
|
|
lazy = false,
|
|
config = function()
|
|
require('catppuccin').setup({
|
|
flavour = 'mocha', -- latte, frappe, macchiato, mocha
|
|
transparent_background = true, -- disables setting the background color.
|
|
})
|
|
|
|
-- setup must be called before loading
|
|
vim.cmd.colorscheme('catppuccin')
|
|
end,
|
|
}
|