Skip to content

Commit 23c0fe9

Browse files
authored
Added NvimTreeLineNr higlight (#1684)
1 parent 5a798b3 commit 23c0fe9

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

doc/nvim-tree-lua.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,6 +1363,7 @@ NvimTreeNormal
13631363
NvimTreeEndOfBuffer (NonText)
13641364
NvimTreeCursorLine (CursorLine)
13651365
NvimTreeCursorLineNr (CursorLineNr)
1366+
NvimTreeLineNr (LineNr)
13661367
NvimTreeVertSplit (VertSplit) [deprecated, use NvimTreeWinSeparator]
13671368
NvimTreeWinSeparator (VertSplit)
13681369
NvimTreeCursorColumn (CursorColumn)

lua/nvim-tree/colors.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ local function get_links()
6767
NormalNC = "NvimTreeNormal",
6868
EndOfBuffer = "EndOfBuffer",
6969
CursorLineNr = "CursorLineNr",
70+
LineNr = "LineNr",
7071
CursorLine = "CursorLine",
7172
VertSplit = "VertSplit",
7273
WinSeparator = "NvimTreeVertSplit",

lua/nvim-tree/view.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ M.View = {
3737
"Normal:NvimTreeNormal",
3838
"CursorLine:NvimTreeCursorLine",
3939
"CursorLineNr:NvimTreeCursorLineNr",
40+
"LineNr:NvimTreeLineNr",
4041
get_win_sep_hl(),
4142
"StatusLine:NvimTreeStatusLine",
4243
"StatusLineNC:NvimTreeStatuslineNC",

0 commit comments

Comments
 (0)