1
0

plugins/catppuccin: disable transparency and enable integrations

This commit is contained in:
Patrick Auernig 2024-10-06 17:49:34 +02:00
parent a6954a76c8
commit edfedf2f2f

View File

@ -18,7 +18,6 @@ local catppuccin_spec = {
priority = 1000, priority = 1000,
config = function() config = function()
require("catppuccin").setup({ require("catppuccin").setup({
transparent_background = true,
custom_highlights = function(colors) custom_highlights = function(colors)
return { return {
Folded = { bg = colors.none }, Folded = { bg = colors.none },
@ -26,7 +25,11 @@ local catppuccin_spec = {
} }
end, end,
integrations = { integrations = {
notify = true, mason = true,
noice = true,
harpoon = true,
lsp_trouble = true,
which_key = true,
} }
}) })