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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 10 deletions

View File

@ -473,10 +473,12 @@ local highlights = {
fg = "#e9e9ed" fg = "#e9e9ed"
}, },
IndentBlanklineChar = { IndentBlanklineChar = {
fg = "#a8aecb" fg = "#a8aecb",
nocombine = true
}, },
IndentBlanklineContextChar = { IndentBlanklineContextChar = {
fg = "#7847bd" fg = "#7847bd",
nocombine = true
}, },
Italic = { Italic = {
italic = true italic = true

View File

@ -490,10 +490,12 @@ local highlights = {
fg = "#1b1d2b" fg = "#1b1d2b"
}, },
IndentBlanklineChar = { IndentBlanklineChar = {
fg = "#3b4261" fg = "#3b4261",
nocombine = true
}, },
IndentBlanklineContextChar = { IndentBlanklineContextChar = {
fg = "#fca7ea" fg = "#fca7ea",
nocombine = true
}, },
Italic = { Italic = {
italic = true italic = true

View File

@ -490,10 +490,12 @@ local highlights = {
fg = "#15161e" fg = "#15161e"
}, },
IndentBlanklineChar = { IndentBlanklineChar = {
fg = "#3b4261" fg = "#3b4261",
nocombine = true
}, },
IndentBlanklineContextChar = { IndentBlanklineContextChar = {
fg = "#9d7cd8" fg = "#9d7cd8",
nocombine = true
}, },
Italic = { Italic = {
italic = true italic = true

View File

@ -490,10 +490,12 @@ local highlights = {
fg = "#1d202f" fg = "#1d202f"
}, },
IndentBlanklineChar = { IndentBlanklineChar = {
fg = "#3b4261" fg = "#3b4261",
nocombine = true
}, },
IndentBlanklineContextChar = { IndentBlanklineContextChar = {
fg = "#9d7cd8" fg = "#9d7cd8",
nocombine = true
}, },
Italic = { Italic = {
italic = true italic = true

View File

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