moved catpuccin into separete config file

This commit is contained in:
Thies Lennart Alff 2024-01-14 22:24:05 +01:00
parent 2ccfe333b3
commit 539d9099f8
2 changed files with 13 additions and 5 deletions

View file

@ -0,0 +1,13 @@
return {
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000,
config = function()
local catpuccin = require('catppuccin')
catpuccin.setup({
flavour = 'frappe',
styles = {
},
})
end
}

View file

@ -12,11 +12,6 @@ return {
dependencies = { dependencies = {
{ 'nvim-lua/plenary.nvim' } } { 'nvim-lua/plenary.nvim' } }
}, },
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000
},
{ {
'tpope/vim-fugitive', 'tpope/vim-fugitive',
name = 'fugitive' name = 'fugitive'