-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(recipes): neo-tree dark theme recipe
- Loading branch information
1 parent
9543573
commit 2c4726c
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# neo-tree.nvim dark theme | ||
|
||
Dark themed color scheme for `neo-tree.nvim` | ||
|
||
**Repository**: https://github.com/nvim-neo-tree/neo-tree.nvim | ||
|
||
_Note_: Highlight groups are designed to match `astrotheme`. Customize the table if you are using different colorscheme. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
-- theme colors | ||
local colors = { | ||
dark = "#111317", | ||
light = "#777777", | ||
neutral = "#8094B4", | ||
backdrop = "#61afef", | ||
} | ||
return { | ||
"nvim-neo-tree/neo-tree.nvim", | ||
dependencies = { | ||
{ | ||
"AstroNvim/astroui", | ||
opts = { | ||
-- highlight groups are set based on astrotheme | ||
highlights = { | ||
astrotheme = { -- set your colorscheme name here | ||
-- indentline marker | ||
NeoTreeIndentMarker = { fg = colors.neutral }, | ||
|
||
-- file tree window separator | ||
NeoTreeWinSeparator = { fg = colors.dark, bg = colors.dark }, | ||
|
||
-- info messages | ||
NeoTreeMessage = { link = "NeoTreeDotfile" }, | ||
|
||
-- normal mode appearance | ||
NeoTreeNormal = { bg = colors.dark }, | ||
NeoTreeNormalNC = { link = "NeoTreeNormal" }, | ||
|
||
-- dotfiles | ||
NeoTreeDotfile = { fg = colors.light }, | ||
NeoTreeDotfiles = { link = "NeoTreeDotfile" }, | ||
|
||
-- tabs | ||
NeoTreeTabActive = { fg = colors.dark, bg = colors.backdrop, bold = true }, | ||
NeoTreeTabInactive = { fg = colors.light, bg = colors.dark }, | ||
|
||
-- tab separators | ||
NeoTreeTabSeparatorActive = { fg = colors.backdrop, bg = colors.backdrop }, | ||
NeoTreeTabSeparatorInactive = { link = "NeoTreeWinSeparator" }, | ||
|
||
-- file operations prompt | ||
NeoTreeTitleBar = { link = "NeoTreeTabActive" }, | ||
NeoTreeFloatNormal = { bg = colors.dark }, | ||
NeoTreeFloatBorder = { fg = colors.backdrop, bg = colors.dark }, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
opts = { | ||
default_component_configs = { | ||
git_status = { | ||
symbols = { | ||
added = "", -- set icon for git symbols | ||
modified = "", | ||
deleted = "", | ||
renamed = "", | ||
untracked = "", | ||
ignored = "", | ||
unstaged = "", | ||
staged = "", | ||
conflict = "", | ||
}, | ||
}, | ||
}, | ||
}, | ||
} |