mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: use border group for bolded vert split
This commit is contained in:
parent
c29c1080be
commit
cd6c951edc
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue