diff --git a/lua/nvim-tree/renderer.lua b/lua/nvim-tree/renderer.lua index c5019fd3..a5e649f5 100644 --- a/lua/nvim-tree/renderer.lua +++ b/lua/nvim-tree/renderer.lua @@ -145,14 +145,12 @@ if icon_state.show_git_icon then }, ["A "] = { { icon = icon_state.icons.git_icons.staged, hl = "NvimTreeGitStaged" }, - { icon = icon_state.icons.git_icons.untracked, hl = "NvimTreeGitNew" } }, [" A"] = { { icon = icon_state.icons.git_icons.untracked, hl = "NvimTreeGitNew" }, }, ["AM"] = { { icon = icon_state.icons.git_icons.staged, hl = "NvimTreeGitStaged" }, - { icon = icon_state.icons.git_icons.untracked, hl = "NvimTreeGitNew" }, { icon = icon_state.icons.git_icons.unstaged, hl = "NvimTreeGitDirty" } }, ["??"] = { { icon = icon_state.icons.git_icons.untracked, hl = "NvimTreeGitDirty" } },