From f39869514645b98ec30bc8826763c288b6cbdbef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sindre=20T=2E=20Str=C3=B8m?= Date: Thu, 22 Apr 2021 22:29:20 +0200 Subject: [PATCH] Simplify some of the git icon states. (#339) --- lua/nvim-tree/renderer.lua | 2 -- 1 file changed, 2 deletions(-) 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" } },