Skip to content

Commit

Permalink
fix(theme): update CursorLineNr highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 4, 2024
1 parent 7ff0ab6 commit 3bb4dc9
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 @@ -47,7 +47,7 @@ function M.setup()
CursorIM = { reverse = true }, --- like Cursor, but used when in IME mode |CursorIM|.
CursorColumn = { bg = c.base400 }, --- Screen-column at the cursor, when 'cursorcolumn' is set.
CursorLine = { bg = c.base400 }, --- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set.
CursorLineNr = { fg = c.yellow }, --- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
CursorLineNr = { fg = c.yellow50}, --- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.

DiffAdd = { fg = c.none, bg = c.green }, --- diff mode: Added line |diff.txt|.
DiffChange = { fg = c.none, bg = c.yellow }, --- diff mode: Changed line |diff.txt|.
Expand Down

0 comments on commit 3bb4dc9

Please sign in to comment.