feat: add plugin catppuccin theme

This commit is contained in:
Sven Vogel 2024-11-24 16:53:48 +01:00
parent b2c460a96e
commit c0aee86f3e
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
--
-- Soothing pastel theme for Neovim.
--
-- Source: https://github.com/catppuccin/nvim
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 24.11.2024
-- Edited: 24.11.2024
--
-- ==============================================
return {
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function(opts)
require('catppuccin').setup(opts)
-- setup must be called before loading
vim.cmd.colorscheme "catppuccin"
end
}
}