Skip to content

Commit

Permalink
fix(theme): remove reverse property from the visual line highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 3, 2024
1 parent e358e02 commit 30769a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/pastelnight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function M.setup()
TabLineFill = { fg = c.base200, bg = c.base400 }, --- tab pages line, where there are no labels.
TabLineSel = { fg = c.bg, bg = c.fg }, --- tab pages line, active tab page label.
WinSeparator = { fg = c.base700, bold = true }, --- the column separating vertically split windows.
Visual = { bg = c.base300, reverse = true }, --- Visual mode selection.
Visual = { bg = c.base300}, --- Visual mode selection.
VisualNOS = { bg = c.base400, underline = true }, --- Visual mode selection when vim is "Not Owning the Selection".
QuickFixLine = { fg = c.blue300, underline = true }, --- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
NormalFloat = { fg = c.fg, bg = c.base600 }, --- Normal text in floating windows.
Expand Down

0 comments on commit 30769a0

Please sign in to comment.