moved catpuccin into separete config file

This commit is contained in:
Thies Lennart Alff 2024-01-14 22:24:05 +01:00
parent 30a2313b05
commit 9417d74d14
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 = {
{ 'nvim-lua/plenary.nvim' } }
},
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000
},
{
'tpope/vim-fugitive',
name = 'fugitive'