Skip to content

Commit

Permalink
fix(colorful-winsep): respect transparent_background configuration (#775
Browse files Browse the repository at this point in the history
)

the background color should be transparent ('none') if config option is
set.
  • Loading branch information
jack-mil authored Oct 5, 2024
1 parent 63685e1 commit 9e6ec28
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/catppuccin/groups/integrations/colorful_winsep.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ local M = {}

function M.get()
return {
NvimSeparator = { bg = C.base, fg = C[O.integrations.colorful_winsep.color] },
NvimSeparator = {
fg = C[O.integrations.colorful_winsep.color],
bg = O.transparent_background and C.none or C.base
},
}
end

Expand Down

0 comments on commit 9e6ec28

Please sign in to comment.