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"
},
IndentBlanklineChar = {
fg = "#a8aecb"
fg = "#a8aecb",
nocombine = true
},
IndentBlanklineContextChar = {
fg = "#7847bd"
fg = "#7847bd",
nocombine = true
},
Italic = {
italic = true

View File

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

View File

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

View File

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

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 },