Skip to content

Commit

Permalink
feat(highlights): update indent-blankline to v3 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramojus authored Feb 3, 2024
1 parent da71920 commit a9467cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/mellifluous/highlights/plugins/indent_blankline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ local M = {}
function M.set(hl, colors)
local config = require('mellifluous.config').config

hl.set('IndentBlanklineChar', { fg = (config.is_bg_dark and colors.bg4) or colors.dark_bg2 })
hl.set('IndentBlanklineContextChar', { fg = colors.fg5 })
hl.set('IndentBlanklineSpaceChar', { link = 'Whitespace' })
hl.set('IblIndent', { fg = (config.is_bg_dark and colors.bg4) or colors.dark_bg2 })
hl.set('IblScope', { fg = colors.fg5 })
hl.set('IblWhitespace', { link = 'Whitespace' })
end

return M

0 comments on commit a9467cd

Please sign in to comment.