Skip to content

Commit

Permalink
Merge pull request #83 from qanyue/main
Browse files Browse the repository at this point in the history
add selected mark for neo-tree
  • Loading branch information
rmehri01 authored Mar 8, 2024
2 parents 1527c93 + 060f016 commit ce4aacb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/onenord/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ function theme.highlights(colors, config)
NvimTreeSpecialFile = { fg = colors.orange, style = "underline" },
NvimTreeImageFile = { fg = colors.purple, style = "bold" },
NvimTreeNormal = { fg = colors.fg, bg = colors.active },
NvimTreeCursorLine = { bg = colors.float },
NvimTreeCursorLine = { link = "Visual" },
NvimTreeVertSplit = { fg = colors.active, bg = colors.active },
LspDiagnosticsError = { fg = colors.error },
LspDiagnosticsWarning = { fg = colors.warn },
Expand All @@ -752,6 +752,7 @@ function theme.highlights(colors, config)
NeoTreeNormal = { fg = colors.fg, bg = colors.active },
NeoTreeNormalNC = { fg = colors.fg, bg = colors.active },
NeoTreeSymbolicLinkTarget = { fg = colors.cyan, style = "bold" },
NeoTreeCursorLine = { link = "Visual" },

-- WhichKey
WhichKey = { fg = colors.purple, style = "bold" },
Expand Down

0 comments on commit ce4aacb

Please sign in to comment.