From 9699aa23c9832d81e4fdd43866d143e89c29349f Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 28 Sep 2023 10:54:08 +0200 Subject: [PATCH] feat(indent-blankline): new hl groups --- lua/tokyonight/theme.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index d4eafd8..3d272fa 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -312,10 +312,10 @@ function M.setup() -- Markdown ["@text.title.1.markdown"] = { fg = c.blue, bold = true }, ["@text.title.2.markdown"] = { fg = c.yellow, bold = true }, - ["@text.title.3.markdown"] = { fg = c.green, bold = true}, - ["@text.title.4.markdown"] = { fg = c.teal, bold = true}, - ["@text.title.5.markdown"] = { fg = c.magenta, bold = true}, - ["@text.title.6.markdown"] = { fg = c.purple, bold = true}, + ["@text.title.3.markdown"] = { fg = c.green, bold = true }, + ["@text.title.4.markdown"] = { fg = c.teal, bold = true }, + ["@text.title.5.markdown"] = { fg = c.magenta, bold = true }, + ["@text.title.6.markdown"] = { fg = c.purple, bold = true }, -- ts-rainbow rainbowcol1 = { fg = c.red }, @@ -652,6 +652,8 @@ function M.setup() IndentBlanklineChar = { fg = c.fg_gutter, nocombine = true }, IndentBlanklineContextChar = { fg = c.purple, nocombine = true }, + IblIndent = { fg = c.fg_gutter, nocombine = true }, + IblScope = { fg = c.purple, nocombine = true }, -- Scrollbar ScrollbarHandle = { fg = c.none, bg = c.bg_highlight },