From fef587d437a8e7cc5700c018ae40b3404e5ff7c7 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 30 Apr 2025 20:52:21 +0200 Subject: [PATCH] fix(nvim-tree): change git branch label --- lua/ow/plugins/nvim-tree.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ow/plugins/nvim-tree.lua b/lua/ow/plugins/nvim-tree.lua index 180593d..8989650 100644 --- a/lua/ow/plugins/nvim-tree.lua +++ b/lua/ow/plugins/nvim-tree.lua @@ -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,