From ca11e607b8846cd6b6e4e5f3984615bc75a54058 Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 01:33:31 +0200 Subject: [PATCH] changed nvimtree colors --- lua/tccs/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index 2335468..b0e9e98 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -30,6 +30,8 @@ theme.set_highlights = function(opts) hl(0, 'Pmenu', { fg = c.fg, bg = c.selection_inactive, ctermfg = 188, ctermbg = 235 }) hl(0, 'PmenuSel', { fg = c.selection_bg, bg = c.fg, ctermfg = 235, ctermbg = 188 }) + hl(0, 'PmenuSbar', { bg = c.selection_inactive }) + hl(0, 'PmenuThumb', { bg = c.selection_inactive }) hl(0, 'FloatBorder', { fg = c.fg, bg = c.selection_inactive }) hl(0, 'Question', { fg = c.string }) @@ -288,8 +290,6 @@ return theme --hl(0, 'EndOfBuffer', { fg = c.bg, bg = 'NONE' }) --hl(0, 'IncSearch', { fg = c.vscNone, bg = c.vscSearchCurrent }) ---hl(0, 'PmenuSbar', { fg = 'NONE', bg = c.vscPopupHighlightGray }) ---hl(0, 'PmenuThumb', { fg = 'NONE', bg = c.vscPopupFront }) --hl(0, 'VisualNOS', { bg = c.vscSelection }) --hl(0, 'Character', { fg = c.vscOrange, bg = 'NONE' }) --hl(0, 'Number', { fg = c.vscLightGreen, bg = 'NONE' })