feat: use border group for bolded vert split

This commit is contained in:
mvllow 2024-01-08 09:43:26 -06:00
commit cd6c951edc
No known key found for this signature in database

View file

@ -98,8 +98,9 @@ config.options = {
local function migrate(options)
if options.bold_vert_split then
options.highlight_groups["VertSplit"] = { fg = "muted", bg = "muted" }
options.highlight_groups["WinSeparator"] = { fg = "muted", bg = "muted" }
local border = options.groups.border or "muted"
options.highlight_groups["VertSplit"] = { fg = border, bg = border }
options.highlight_groups["WinSeparator"] = { fg = border, bg = border }
end
if options.disable_float_background then