From 34745d982aa5222e71162b8d43e51264404d1683 Mon Sep 17 00:00:00 2001 From: siduck Date: Mon, 28 Nov 2022 22:20:28 +0530 Subject: [PATCH] Revert "move tablist related hl groups to minimal statusline hls" This reverts commit 00ba52c475b65f128e067225ee68ada0870ad483. --- lua/base46/integrations/minimal_st.lua | 29 +++++++++----------------- lua/base46/integrations/tbline.lua | 27 ++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 19 deletions(-) diff --git a/lua/base46/integrations/minimal_st.lua b/lua/base46/integrations/minimal_st.lua index 43f2784..0326e70 100644 --- a/lua/base46/integrations/minimal_st.lua +++ b/lua/base46/integrations/minimal_st.lua @@ -38,36 +38,28 @@ local groups = { bg = colors.black, }, + St_LspStatus_Icon = { + fg = colors.black, + bg = colors.nord_blue, + }, St_EmptySpace = { fg = colors.black, bg = colors.black, }, - TblineTabNewBtn = { - fg = colors.white, - bg = colors.one_bg, - bold = true, - }, - - TbLineTabOn = { + St_EmptySpace2 = { fg = colors.black, - bg = colors.blue, - bold = true, + bg = colors.black, }, - TbLineTabOff = { + St_file_info = { + bg = colors.black, fg = colors.white, - bg = colors.one_bg, }, - TbLineTabCloseBtn = { - fg = colors.black, - bg = colors.blue, - }, - - TBTabTitle = { + St_file_sep = { + bg = colors.black, fg = colors.black, - bg = colors.white, }, } @@ -175,6 +167,5 @@ gen_hl("file", "red") gen_hl("Pos", "yellow") gen_hl("cwd", "orange") gen_hl("lsp", "green") -gen_hl("tab", "blue") return groups diff --git a/lua/base46/integrations/tbline.lua b/lua/base46/integrations/tbline.lua index 7bd08af..2370707 100644 --- a/lua/base46/integrations/tbline.lua +++ b/lua/base46/integrations/tbline.lua @@ -36,6 +36,33 @@ return { bg = colors.black2, }, + TblineTabNewBtn = { + fg = colors.white, + bg = colors.one_bg3, + bold = true, + }, + + TbLineTabOn = { + fg = colors.black, + bg = colors.nord_blue, + bold = true, + }, + + TbLineTabOff = { + fg = colors.white, + bg = colors.one_bg2, + }, + + TbLineTabCloseBtn = { + fg = colors.black, + bg = colors.nord_blue, + }, + + TBTabTitle = { + fg = colors.black, + bg = colors.white, + }, + TbLineThemeToggleBtn = { bold = true, fg = colors.white,