From c54cd8f1ad194f3cfb650eb6eb5331288899131d Mon Sep 17 00:00:00 2001 From: mvllow Date: Sun, 7 Jan 2024 13:18:49 -0600 Subject: [PATCH] revert: high contrast Visual This commit reverts the high contrast Visual highlights in favour of the previous, neutral behaviour. This allows the foreground highlights to remain even when selected. Use the previous version in your own configuration: ```lua highlight_groups = { Visual = { fg = "base", bg = "pine" } } ``` --- lua/rose-pine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index e258c13..d45d4af 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -83,7 +83,7 @@ local function set_highlights() TabLineSel = { fg = palette.text, bg = palette.overlay, bold = styles.bold }, Title = make_title(), VertSplit = make_border(), - Visual = { fg = palette.base, bg = palette.pine }, + Visual = { bg = palette.highlight_med }, -- VisualNOS = {}, WarningMsg = { fg = groups.warn, bold = styles.bold }, -- Whitespace = {},