moved catpuccin into separete config file
This commit is contained in:
parent
2ccfe333b3
commit
539d9099f8
2 changed files with 13 additions and 5 deletions
13
lua/plugins/catppuccin.lua
Normal file
13
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 = {
|
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'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue