nvim-snappy/lua/plugins/catppuccin.lua

17 lines
282 B
Lua

-- Catppuccin Theme
--- A soothing pastel theme for neovim.
return {
'catppuccin/nvim',
tag = 'v1.6.0',
name = 'catppuccin',
lazy = false,
priority = 1000,
-- Colorschemes should force-load at high priority.
config = function()
vim.cmd('colorscheme catppuccin')
end,
}