Skip to content

Commit

Permalink
fix(plugin): indentBlankline hl group names
Browse files Browse the repository at this point in the history
* Fix indentBlankline hl group names
* Add plugin missing hl groups
* Use grey for MiniIndentscopeSymbol

Fixes: 8a082b9 ("fix(plugin): indentBlankline hl group names")
  • Loading branch information
aymanbagabas committed Feb 14, 2023
1 parent 76b2b1f commit f24ecc1
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions lua/onedark/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -493,13 +493,17 @@ hl.plugins.ts_rainbow = {
}

hl.plugins.indent_blankline = {
IndentBlankLineIndent1 = colors.Blue,
IndentBlankLineIndent2 = colors.Green,
IndentBlankLineIndent3 = colors.Cyan,
IndentBlankLineIndent4 = colors.LightGrey,
IndentBlankLineIndent5 = colors.Purple,
IndentBlankLineIndent6 = colors.Red,
IndentBlankLineContext = { fg = c.orange, bg = c.bg3, bold = true },
IndentBlanklineIndent1 = colors.Blue,
IndentBlanklineIndent2 = colors.Green,
IndentBlanklineIndent3 = colors.Cyan,
IndentBlanklineIndent4 = colors.LightGrey,
IndentBlanklineIndent5 = colors.Purple,
IndentBlanklineIndent6 = colors.Red,
IndentBlanklineChar = { fg = c.bg1, gui = "nocombine" },
IndentBlanklineContext = { fg = c.orange, bg = c.bg3, bold = true },
IndentBlanklineContextChar = { fg = c.bg1, gui = "nocombine" },
IndentBlanklineContextStart = { sp = c.bg1, gui = "underline" },
IndentBlanklineContextSpaceChar = { gui = "nocombine" },
}

hl.plugins.mini = {
Expand All @@ -508,7 +512,7 @@ hl.plugins.mini = {
MiniCursorword = { fmt = "underline" },
MiniCursorwordCurrent = { fmt = "underline" },

MiniIndentscopeSymbol = { fg = c.light_grey },
MiniIndentscopeSymbol = { fg = c.grey },
MiniIndentscopePrefix = { fmt = "nocombine" }, -- Make it invisible

MiniJump = { fg = c.purple, fmt = "underline", sp = c.purple },
Expand Down

0 comments on commit f24ecc1

Please sign in to comment.