From 477ad76665001794ac133d56b20656866658f69e Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 00:45:53 +0200 Subject: [PATCH] added cterm colors for pmenu --- lua/tccs/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index da6ab90..942c24a 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -29,7 +29,7 @@ theme.set_highlights = function(opts) hl(0, 'NonText', { fg = c.guide_normal }) hl(0, 'Pmenu', { fg = c.fg, bg = c.selection_inactive, ctermfg = 188, ctermbg = 17 }) - hl(0, 'PmenuSel', { fg = c.selction_bg, bg = c.fg, ctermfg = 188, ctermbg = 23 }) + hl(0, 'PmenuSel', { fg = c.selection_bg, bg = c.fg, ctermfg = 188, ctermbg = 23 }) hl(0, 'FloatBorder', { fg = c.fg, bg = c.selection_inactive }) hl(0, 'Question', { fg = c.string })