transparent background on theme

This commit is contained in:
MaasOedipa 2025-10-31 11:20:46 +01:00
parent e1a4293636
commit add56d174d
1 changed files with 4 additions and 1 deletions

View File

@ -1,13 +1,16 @@
return function() return function()
-- setup Catppuccin -- setup Catppuccin
require('catppuccin').setup { require('catppuccin').setup {
flavour = 'mocha', -- options: latte, frappe, macchiato, mocha flavour = 'macchiato', -- options: latte, frappe, macchiato, mocha
integrations = { integrations = {
-- Optional: enable integrations for plugins like telescope, lualine, etc -- Optional: enable integrations for plugins like telescope, lualine, etc
telescope = true, telescope = true,
nvimtree = true, nvimtree = true,
cmp = true, cmp = true,
mason = true,
treesitter = true,
}, },
transparent_background = true,
} }
-- load the colorscheme -- load the colorscheme
vim.cmd.colorscheme 'catppuccin' vim.cmd.colorscheme 'catppuccin'