From add56d174da053801e74aeae3ee83226f26bb197 Mon Sep 17 00:00:00 2001 From: MaasOedipa Date: Fri, 31 Oct 2025 11:20:46 +0100 Subject: [PATCH] transparent background on theme --- lua/custom/themes/catppuccin.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/custom/themes/catppuccin.lua b/lua/custom/themes/catppuccin.lua index dd65987a..1db85724 100644 --- a/lua/custom/themes/catppuccin.lua +++ b/lua/custom/themes/catppuccin.lua @@ -1,13 +1,16 @@ return function() -- setup Catppuccin require('catppuccin').setup { - flavour = 'mocha', -- options: latte, frappe, macchiato, mocha + flavour = 'macchiato', -- options: latte, frappe, macchiato, mocha integrations = { -- Optional: enable integrations for plugins like telescope, lualine, etc telescope = true, nvimtree = true, cmp = true, + mason = true, + treesitter = true, }, + transparent_background = true, } -- load the colorscheme vim.cmd.colorscheme 'catppuccin'