Skip to content

Commit 30ec241

Browse files
A-Lamiamehalter
authored andcommitted
feat(neo-tree): make tabs feel more integrated
1 parent 7905486 commit 30ec241

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

lua/astrotheme/groups/plugins/neo-tree.lua

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,21 @@ local function callback(opts)
1010
NeoTreeGitConflict = { fg = C.red },
1111
NeoTreeGitModified = { fg = C.orange },
1212
NeoTreeGitUntracked = { fg = C.yellow },
13-
NeoTreeNormal = { fg = C.text, bg = opts.transparent and C.none or C.crust },
13+
NeoTreeNormal = { fg = C.text, bg = opts.transparent and C.none or C.mantle },
1414
NeoTreeNormalNC = {
1515
fg = C.text,
1616
bg = (opts.transparent and opts.inactive and C.base)
1717
or (opts.inactive and C.base)
1818
or (opts.transparent and C.none)
19-
or C.crust,
19+
or C.mantle,
2020
},
2121
NeoTreeSymbolicLinkTarget = { fg = C.cyan },
22-
23-
NeoTreeTabActive = { fg = C.text, bg = C.base, bold = true },
24-
NeoTreeTabInactive = { fg = C.subtext2, bg = C.overlay1 },
25-
NeoTreeTabSeparatorActive = { fg = C.text, bg = C.base },
26-
NeoTreeTabSeparatorInactive = { fg = C.text, bg = C.overlay1 },
27-
NeoTreeVertSplit = { fg = C.base, bg = C.crust },
28-
NeoTreeStatusLineNC = { fg = C.crust, bg = C.crust },
22+
NeoTreeTabActive = { fg = C.text, bg = C.mantle, bold = true },
23+
NeoTreeTabInactive = { fg = C.subtext0, bg = C.crust },
24+
NeoTreeTabSeparatorActive = { fg = C.mantle, bg = C.mantle },
25+
NeoTreeTabSeparatorInactive = { fg = C.crust, bg = C.crust },
26+
NeoTreeVertSplit = { fg = C.base, bg = C.mantle },
27+
NeoTreeStatusLineNC = { fg = C.mantle, bg = C.crust },
2928
}
3029
end
3130

0 commit comments

Comments
 (0)