From 0765ef2f2def16e4290b99f2804464f511a13d1a Mon Sep 17 00:00:00 2001 From: Webhooked <9132742+webhooked@users.noreply.github.com> Date: Thu, 31 Jul 2025 09:27:38 +0200 Subject: [PATCH] fix: add missing indent-blankline v3 highlight groups --- lua/kanso/highlights/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/kanso/highlights/plugins.lua b/lua/kanso/highlights/plugins.lua index fd8be2a..16238ef 100644 --- a/lua/kanso/highlights/plugins.lua +++ b/lua/kanso/highlights/plugins.lua @@ -263,6 +263,12 @@ function M.setup(colors, config) IblIndent = { fg = theme.ui.indent_line, nocombine = true }, IblWhitespace = { fg = theme.ui.indent_line, nocombine = true }, IblScope = { fg = theme.ui.active_indent_line, nocombine = true }, + -- Treesitter context for ibl + ["@ibl.indent.char.1"] = { fg = theme.ui.indent_line, nocombine = true }, + ["@ibl.scope.char.1"] = { fg = theme.ui.active_indent_line, nocombine = true }, + ["@ibl.whitespace.char.1"] = { fg = theme.ui.indent_line, nocombine = true }, + -- Active/scope underline + ["@ibl.scope.underline.1"] = { sp = theme.ui.active_indent_line, underline = true, nocombine = true }, -- Other indent plugins IndentLine = { fg = theme.ui.indent_line, nocombine = true }, Indent = { fg = theme.ui.indent_line, nocombine = true },