fix: indent-blankline highlight groups nocombine (#247)

see https://github.com/lukas-reineke/indent-blankline.nvim/issues/72
This commit is contained in:
Lukas Reineke
2022-10-13 14:25:29 +09:00
committed by GitHub
parent 6ffb1579d0
commit c78e6986bc
5 changed files with 18 additions and 10 deletions

View File

@@ -542,8 +542,8 @@ function M.setup()
NavicText = { fg = c.fg, bg = c.none },
NavicSeparator = { fg = c.fg, bg = c.none },
IndentBlanklineChar = { fg = c.fg_gutter },
IndentBlanklineContextChar = { fg = c.purple },
IndentBlanklineChar = { fg = c.fg_gutter, nocombine = true },
IndentBlanklineContextChar = { fg = c.purple, nocombine = true },
-- Scrollbar
ScrollbarHandle = { fg = c.none, bg = c.bg_highlight },