From ef54141a8d900ddd08873e7489a4c1c1a9f65d9b Mon Sep 17 00:00:00 2001 From: nullchilly Date: Tue, 12 Jul 2022 13:11:00 +0700 Subject: [PATCH] fix(highlight): Fix blend option --- .../core/integrations/indent_blankline.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lua/catppuccin/core/integrations/indent_blankline.lua b/lua/catppuccin/core/integrations/indent_blankline.lua index 3fe3bde..920aa0d 100644 --- a/lua/catppuccin/core/integrations/indent_blankline.lua +++ b/lua/catppuccin/core/integrations/indent_blankline.lua @@ -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