fix(highlight): Fix blend option

dev
nullchilly 2 years ago
parent 3914f0d38e
commit ef54141a8d

@ -8,12 +8,12 @@ function M.get(cp)
}
if cnf.integrations.indent_blankline.colored_indent_levels then
hi["IndentBlanklineIndent6"] = {blend = "nocombine", fg = cp.yellow}
hi["IndentBlanklineIndent5"] = {blend = "nocombine", fg = cp.red}
hi["IndentBlanklineIndent4"] = {blend = "nocombine", fg = cp.teal}
hi["IndentBlanklineIndent3"] = {blend = "nocombine", fg = cp.peach}
hi["IndentBlanklineIndent2"] = {blend = "nocombine", fg = cp.blue}
hi["IndentBlanklineIndent1"] = {blend = "nocombine", fg = cp.pink}
hi["IndentBlanklineIndent6"] = {blend = 0, fg = cp.yellow}
hi["IndentBlanklineIndent5"] = {blend = 0, fg = cp.red}
hi["IndentBlanklineIndent4"] = {blend = 0, fg = cp.teal}
hi["IndentBlanklineIndent3"] = {blend = 0, fg = cp.peach}
hi["IndentBlanklineIndent2"] = {blend = 0, fg = cp.blue}
hi["IndentBlanklineIndent1"] = {blend = 0, fg = cp.pink}
end
return hi

Loading…
Cancel
Save