diff options
author | Jared Baur <45740526+jmbaur@users.noreply.github.com> | 2025-01-07 04:21:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-07 04:21:15 -0800 |
commit | b67fcd0488746b079a3b721ae4800af94cd126e1 (patch) | |
tree | 31b8bed01667ddc7aa2b89a5c765d30fd5d7cf1d | |
parent | d8bc08db7fd8d0efbf2e9ebf39fecb6f732f84e8 (diff) | |
download | rneovim-b67fcd0488746b079a3b721ae4800af94cd126e1.tar.gz rneovim-b67fcd0488746b079a3b721ae4800af94cd126e1.tar.bz2 rneovim-b67fcd0488746b079a3b721ae4800af94cd126e1.zip |
fix(highlight): make `TablineSel` more noticeable #31896
The default `TablineSel` highlighting makes it subjectively difficult to
differentiate the selected tab from unselected ones.
-rw-r--r-- | src/nvim/highlight_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/highlight_group.c b/src/nvim/highlight_group.c index 6fd0b858a8..6575113e2f 100644 --- a/src/nvim/highlight_group.c +++ b/src/nvim/highlight_group.c @@ -150,7 +150,6 @@ static const char *highlight_init_both[] = { "PmenuMatchSel gui=bold cterm=bold", "PmenuSel gui=reverse cterm=reverse,underline blend=0", "RedrawDebugNormal gui=reverse cterm=reverse", - "TabLineSel gui=bold cterm=bold", "TermCursor gui=reverse cterm=reverse", "Underlined gui=underline cterm=underline", "lCursor guifg=bg guibg=fg", @@ -181,6 +180,7 @@ static const char *highlight_init_both[] = { "default link StatusLineTermNC StatusLineNC", "default link TabLine StatusLineNC", "default link TabLineFill TabLine", + "default link TabLineSel Normal", "default link VertSplit WinSeparator", "default link VisualNOS Visual", "default link Whitespace NonText", |