feat(theme): add catppuccin settings
This commit is contained in:
parent
1b3c879d41
commit
3cbf8cbb8d
1 changed files with 12 additions and 1 deletions
|
@ -28,7 +28,18 @@ function M.init(use, config)
|
||||||
'catppuccin/nvim',
|
'catppuccin/nvim',
|
||||||
as = 'catppuccin',
|
as = 'catppuccin',
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd('color catppuccin')
|
local catppuccin = require('catppuccin')
|
||||||
|
catppuccin.setup({
|
||||||
|
integrations = {
|
||||||
|
gitsigns = true,
|
||||||
|
telescope = true,
|
||||||
|
dashboard = true,
|
||||||
|
nvimtree = {
|
||||||
|
enabled = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
vim.cmd('colorscheme catppuccin')
|
||||||
end,
|
end,
|
||||||
disable = config.theme ~= 'catppuccin',
|
disable = config.theme ~= 'catppuccin',
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue