From 7cbd45bb2cf470e9505e6f38369be81540272ced Mon Sep 17 00:00:00 2001 From: "Timofey.Kovalev" Date: Mon, 20 Jan 2025 11:49:04 +0300 Subject: [PATCH] commit --- lua/plugins/neo-tree.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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,