fix(neo-tree): add git-related colors

The colors were defaulting to use hl-groups of `gitsigns` and if you do not have that plugin
installed the colors for the git were all wrong so added those.

Did test it on `main` and that has the same result.
This commit is contained in:
Redoxahmii 2025-02-05 21:25:16 +05:00
parent 5369e9e50e
commit 58ea6a9217

View file

@ -3,10 +3,13 @@ local M = {}
function M.get(c, opts)
-- stylua: ignore
return {
NeoTreeNormal = { fg = c.base00, bg = c.bg_sidebar },
NeoTreeNormalNC = { fg = c.base00, bg = c.bg_sidebar },
NeoTreeDimText = { fg = c.base01 },
NeoTreeMessage = { fg = c.base01 },
NeoTreeNormal = { fg = c.base00, bg = c.bg_sidebar },
NeoTreeNormalNC = { fg = c.base00, bg = c.bg_sidebar },
NeoTreeDimText = { fg = c.base01 },
NeoTreeMessage = { fg = c.base01 },
NeoTreeGitModified = { fg = c.yellow500 },
NeoTreeGitDeleted = { fg = c.red500 },
NeoTreeGitAdded = { fg = c.green500 },
}
end