diff --git a/lua/hardline/common.lua b/lua/hardline/common.lua index 2fc9bf4..ddf6bd5 100644 --- a/lua/hardline/common.lua +++ b/lua/hardline/common.lua @@ -33,7 +33,7 @@ function M.get_state(section) return mode.state end if section.class == 'bufferline' then - if section.conceal then return 'conceal' end + if section.separator then return 'separator' end local state = section.current and 'current' or 'background' if section.modified then state = string.format('%s_modified', state) end return state diff --git a/lua/hardline/themes/default.lua b/lua/hardline/themes/default.lua index 59818ba..5de8d84 100644 --- a/lua/hardline/themes/default.lua +++ b/lua/hardline/themes/default.lua @@ -92,7 +92,7 @@ return { inactive = inactive, }, bufferline = { - conceal = { + separator = { guifg = colors.comment_grey.gui, guibg = colors.black.gui, ctermfg = colors.comment_grey.cterm, diff --git a/lua/hardline/themes/one.lua b/lua/hardline/themes/one.lua index 59818ba..5de8d84 100644 --- a/lua/hardline/themes/one.lua +++ b/lua/hardline/themes/one.lua @@ -92,7 +92,7 @@ return { inactive = inactive, }, bufferline = { - conceal = { + separator = { guifg = colors.comment_grey.gui, guibg = colors.black.gui, ctermfg = colors.comment_grey.cterm,