Skip to content

Commit

Permalink
feat: new style for line nr
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed May 15, 2024
1 parent 34a0572 commit aabb529
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/tokyonight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ function M.setup()
SignColumnSB = { bg = c.bg_sidebar, fg = c.fg_gutter }, -- column where |signs| are displayed
Substitute = { bg = c.red, fg = c.black }, -- |:substitute| replacement text highlighting
LineNr = { fg = c.fg_gutter }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
CursorLineNr = { fg = c.dark5 }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
CursorLineNr = { fg = c.orange, bold = true }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
LineNrAbove = { fg = c.fg_gutter },
LineNrBelow = { fg = c.fg_gutter },
MatchParen = { fg = c.orange, bold = true }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
ModeMsg = { fg = c.fg_dark, bold = true }, -- 'showmode' message (e.g., "-- INSERT -- ")
MsgArea = { fg = c.fg_dark }, -- Area for messages and cmdline
Expand Down

0 comments on commit aabb529

Please sign in to comment.