From edfedf2f2f1fd7295c00ace159027b479de6e549 Mon Sep 17 00:00:00 2001 From: Patrick Auernig Date: Sun, 6 Oct 2024 17:49:34 +0200 Subject: [PATCH] plugins/catppuccin: disable transparency and enable integrations --- lua/valeth/plugins/colorschemes.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lua/valeth/plugins/colorschemes.lua b/lua/valeth/plugins/colorschemes.lua index 2dfa59c..9b36669 100644 --- a/lua/valeth/plugins/colorschemes.lua +++ b/lua/valeth/plugins/colorschemes.lua @@ -18,7 +18,6 @@ local catppuccin_spec = { priority = 1000, config = function() require("catppuccin").setup({ - transparent_background = true, custom_highlights = function(colors) return { Folded = { bg = colors.none }, @@ -26,7 +25,11 @@ local catppuccin_spec = { } end, integrations = { - notify = true, + mason = true, + noice = true, + harpoon = true, + lsp_trouble = true, + which_key = true, } })