Skip to content

Commit

Permalink
fix(theme): update LineNr highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 2, 2024
1 parent 68f7b67 commit 3e75faf
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 @@ -44,7 +44,7 @@ function M.setup()
CursorLine = { bg = c.base400 }, --- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set.
ColorColumn = { bg = c.base400 }, --- used for the columns set with 'colorcolumn'.
CursorLineNr = { fg = c.yellow }, --- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
LineNr = { fg = c.base200 }, --- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
LineNr = { fg = c.base300 }, --- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
Conceal = { fg = c.base200, bg = c.base400 }, --- placeholder characters substituted for concealed text (see 'conceallevel').
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 3e75faf

Please sign in to comment.