feat(transparency): remove border background

This commit is contained in:
mvllow 2024-01-07 19:39:06 -06:00
commit b6a53a45d8
No known key found for this signature in database

View file

@ -9,7 +9,11 @@ local function set_highlights()
local function make_border(fg)
fg = fg or groups.border
return { fg = fg, bg = config.options.extend_background_behind_borders and palette.surface or "NONE" }
return {
fg = fg,
bg = (config.options.extend_background_behind_borders and not styles.transparency) and palette.surface
or "NONE",
}
end
local function make_title(fg)