Skip to content

Commit

Permalink
Merge pull request #172 from ribru17/master
Browse files Browse the repository at this point in the history
fix: correctly highlight indent blankline context using fmt
  • Loading branch information
navarasu authored Jun 12, 2023
2 parents 8ef5192 + 11f14df commit 462b457
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lua/onedark/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -537,11 +537,10 @@ hl.plugins.indent_blankline = {
IndentBlanklineIndent4 = colors.LightGrey,
IndentBlanklineIndent5 = colors.Purple,
IndentBlanklineIndent6 = colors.Red,
IndentBlanklineChar = { fg = c.bg1, gui = "nocombine" },
IndentBlanklineContext = { fg = c.orange, bg = c.grey, bold = true },
IndentBlanklineContextChar = { fg = c.grey, gui = "nocombine" },
IndentBlanklineContextStart = { sp = c.grey, gui = "underline" },
IndentBlanklineContextSpaceChar = { gui = "nocombine" },
IndentBlanklineChar = { fg = c.bg1, fmt = "nocombine" },
IndentBlanklineContextChar = { fg = c.grey, fmt = "nocombine" },
IndentBlanklineContextStart = { sp = c.grey, fmt = "underline" },
IndentBlanklineContextSpaceChar = { fmt = "nocombine" },
}

hl.plugins.mini = {
Expand Down

0 comments on commit 462b457

Please sign in to comment.