mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
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" }
}
```
This commit is contained in:
parent
b0f08e9ab9
commit
c54cd8f1ad
1 changed files with 1 additions and 1 deletions
|
|
@ -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 = {},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue