Replies: 1 comment 1 reply
-
You can modify the highlight colors through Vim's With lazy.nvim, I just put it in the {
"nvim-neo-tree/neo-tree.nvim",
...
init = function()
-- change dotfiles highlight color (set it to normal)
vim.cmd('highlight NeoTreeDotfile guifg=NeoTreeNormal');
vim.cmd('highlight NeoTreeGitIgnored guifg=#626262'); -- used to link to NeoTreeDotfile, undo that
end,
...
} You can see a full list of highlights and more information about them in |
Beta Was this translation helpful? Give feedback.
1 reply
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
-
How to change the color of gitmoditify files and directories

Beta Was this translation helpful? Give feedback.
All reactions