From 034925baeb8ff4626291e7439a6103d40bdc457e Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 01:30:36 +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 b0e9e98..2335468 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -30,8 +30,6 @@ 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 }) @@ -290,6 +288,8 @@ 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' })