mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
fix: mismatched WinSeparator background
This commit is contained in:
parent
29c6a52b02
commit
c29c1080be
2 changed files with 3 additions and 2 deletions
|
|
@ -86,13 +86,13 @@ local function set_highlights()
|
||||||
TabLineFill = { bg = groups.panel },
|
TabLineFill = { bg = groups.panel },
|
||||||
TabLineSel = { fg = palette.text, bg = palette.overlay, bold = styles.bold },
|
TabLineSel = { fg = palette.text, bg = palette.overlay, bold = styles.bold },
|
||||||
Title = make_title(),
|
Title = make_title(),
|
||||||
VertSplit = make_border(),
|
VertSplit = { fg = groups.border },
|
||||||
Visual = { bg = palette.highlight_med },
|
Visual = { bg = palette.highlight_med },
|
||||||
-- VisualNOS = {},
|
-- VisualNOS = {},
|
||||||
WarningMsg = { fg = groups.warn, bold = styles.bold },
|
WarningMsg = { fg = groups.warn, bold = styles.bold },
|
||||||
-- Whitespace = {},
|
-- Whitespace = {},
|
||||||
WildMenu = { link = "IncSearch" },
|
WildMenu = { link = "IncSearch" },
|
||||||
WinSeparator = make_border(),
|
WinSeparator = { fg = groups.border },
|
||||||
|
|
||||||
DiagnosticError = { fg = groups.error },
|
DiagnosticError = { fg = groups.error },
|
||||||
DiagnosticHint = { fg = groups.hint },
|
DiagnosticHint = { fg = groups.hint },
|
||||||
|
|
|
||||||
|
|
@ -99,6 +99,7 @@ config.options = {
|
||||||
local function migrate(options)
|
local function migrate(options)
|
||||||
if options.bold_vert_split then
|
if options.bold_vert_split then
|
||||||
options.highlight_groups["VertSplit"] = { fg = "muted", bg = "muted" }
|
options.highlight_groups["VertSplit"] = { fg = "muted", bg = "muted" }
|
||||||
|
options.highlight_groups["WinSeparator"] = { fg = "muted", bg = "muted" }
|
||||||
end
|
end
|
||||||
|
|
||||||
if options.disable_float_background then
|
if options.disable_float_background then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue