diff --git a/lua/mellifluous/highlights/plugins/indent_blankline.lua b/lua/mellifluous/highlights/plugins/indent_blankline.lua index 7e1865d..08ac694 100644 --- a/lua/mellifluous/highlights/plugins/indent_blankline.lua +++ b/lua/mellifluous/highlights/plugins/indent_blankline.lua @@ -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