fix(nvim-tree): change git branch label

This commit is contained in:
2025-04-30 20:52:21 +02:00
parent af1b53063b
commit fef587d437
+1 -1
View File
@@ -146,7 +146,7 @@ return {
local label = vim.fn.fnamemodify(path, ":~")
local git_head = vim.fn.FugitiveHead()
if git_head ~= "" then
label = label .. (" (%s)"):format(git_head)
label = label .. (" %s"):format(git_head)
end
return label
end,