diff --git a/lua/plugins/neo-tree.lua b/lua/plugins/neo-tree.lua index 105c74f..4f433b4 100644 --- a/lua/plugins/neo-tree.lua +++ b/lua/plugins/neo-tree.lua @@ -29,6 +29,21 @@ return { symbol = "", highlight = "NeoTreeModified", }, + git_status = { + symbols = { + -- Change type + added = "✚", -- or "✚", but this is redundant info if you use git_status_colors on the name + modified = "", -- or "", but this is redundant info if you use git_status_colors on the name + deleted = "✖", -- this can only be used in the git_status source + renamed = "󰁕", -- this can only be used in the git_status source + -- Status type + untracked = "", + ignored = "", + unstaged = "", -- "󰄱", + staged = "", + conflict = "", + }, + }, }, }) end,