From ad0af6759e2f55dcf3c47eb041bcf3565e98d1b6 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sun, 31 Oct 2021 22:19:26 -0500 Subject: [PATCH] fix: visual selection highlight --- lua/catppuccino/core/mapper.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index 6ef49bb..33b6ff6 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -70,8 +70,8 @@ local function get_base() TabLineFill = { bg = cp.black }, -- tab pages line, where there are no labels TabLineSel = { fg = cp.catppuccino0, bg = cp.catppuccino13 }, -- tab pages line, active tab page label Title = { fg = cp.catppuccino10, style = "bold" }, -- titles for output from ":set all", ":autocmd" etcp. - Visual = { bg = util.darken(cp.catppuccino10, 0.2) }, -- Visual mode selection - VisualNOS = { bg = util.darken(cp.catppuccino10, 0.2) }, -- Visual mode selection when vim is "Not Owning the Selection". + Visual = { bg = cp.catppuccino16 }, -- Visual mode selection + VisualNOS = { bg = cp.catppuccino16 }, -- Visual mode selection when vim is "Not Owning the Selection". WarningMsg = { fg = cp.catppuccino9 }, -- warning messages Whitespace = { fg = cp.catppuccino13 }, -- "nbsp", "space", "tab" and "trail" in 'listchars' WildMenu = { bg = util.darken(cp.catppuccino10, 0.2) }, -- current match in 'wildmenu' completion