Skip to content

Commit

Permalink
fix(indent_blankline): style wasn't set correctly (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
nullchilly committed May 12, 2023
1 parent 5472a3e commit 77aa745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nightfox/group/modules/indent_blankline.lua
Expand Up @@ -5,7 +5,7 @@ function M.get(spec, config, opts)
return {
IndentBlanklineChar = { fg = spec.bg3 },
IndentBlanklineContextChar = { fg = spec.syntax.variable },
IndentBlanklineContextStart = { sp = spec.syntax.variable, underline = true },
IndentBlanklineContextStart = { sp = spec.syntax.variable, style = "underline" },
IndentBlanklineIndent6 = { blend = 0, fg = c.yellow.base },
IndentBlanklineIndent5 = { blend = 0, fg = c.red.base },
IndentBlanklineIndent4 = { blend = 0, fg = c.cyan.base },
Expand Down

0 comments on commit 77aa745

Please sign in to comment.