mirror of
https://github.com/craftzdog/solarized-osaka.nvim.git
synced 2026-09-10 07:16:21 -04:00
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:
parent
5369e9e50e
commit
58ea6a9217
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue