From 866c314b95de1b826d66f164cdeffeb45bfb11ca Mon Sep 17 00:00:00 2001 From: Ramojus Lapinskas Date: Sat, 3 Feb 2024 16:48:50 +0200 Subject: [PATCH] feat(highlights): update indent-blankline to v3 --- lua/mellifluous/highlights/plugins/indent_blankline.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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