You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason modified files are listed in the Explorer with a dark, mush green. This is out of line with the rest of the theme, that uses bright colors as highlights. Could this behavior be changed? Thanks.
The text was updated successfully, but these errors were encountered:
They are aligned with git sign colors: Git.lua. You can find the section on the palette here: git sign palette.
You can find all the NvimTree explorer highlights which defined here: NvimTree highlights.
For your example, change the highlight to raw green for new git files:
vim.api.nvim_command([[ augroup customNvimTreeColors autocmd! autocmd ColorScheme * highlight NvimTreeGitNew guifg=#00ff00 augroup END]])
-- For nvim > 0.7.0 use better new api, `:help api-autocmd`
Hi there,
For some reason modified files are listed in the Explorer with a dark, mush green. This is out of line with the rest of the theme, that uses bright colors as highlights. Could this behavior be changed? Thanks.
The text was updated successfully, but these errors were encountered: