moved catpuccin into separete config file
This commit is contained in:
parent
30a2313b05
commit
9417d74d14
2 changed files with 13 additions and 5 deletions
13
.config/nvim/lua/plugins/catppuccin.lua
Normal file
13
.config/nvim/lua/plugins/catppuccin.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local catpuccin = require('catppuccin')
|
||||
catpuccin.setup({
|
||||
flavour = 'frappe',
|
||||
styles = {
|
||||
},
|
||||
})
|
||||
end
|
||||
}
|
||||
|
|
@ -12,11 +12,6 @@ return {
|
|||
dependencies = {
|
||||
{ 'nvim-lua/plenary.nvim' } }
|
||||
},
|
||||
{
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
priority = 1000
|
||||
},
|
||||
{
|
||||
'tpope/vim-fugitive',
|
||||
name = 'fugitive'
|
||||
|
|
|
|||
Loading…
Reference in a new issue