2025-02-12 11:49:02 +01:00
|
|
|
-- Catppuccin Theme
|
|
|
|
--- A soothing pastel theme for neovim.
|
|
|
|
return {
|
2025-02-13 09:04:17 +01:00
|
|
|
'catppuccin/nvim',
|
2025-02-12 11:49:02 +01:00
|
|
|
tag = 'v1.6.0',
|
|
|
|
|
2025-02-13 09:04:17 +01:00
|
|
|
name = 'catppuccin',
|
2025-02-12 11:49:02 +01:00
|
|
|
|
|
|
|
lazy = false,
|
|
|
|
priority = 1000,
|
|
|
|
-- Colorschemes should force-load at high priority.
|
|
|
|
|
|
|
|
config = function()
|
|
|
|
vim.cmd('colorscheme catppuccin')
|
2025-02-13 09:04:17 +01:00
|
|
|
end,
|
2025-02-12 11:49:02 +01:00
|
|
|
}
|