nvim: statusline: Add space after git ahead behind symbol

This commit is contained in:
Sanchayan Maity 2022-09-05 19:02:44 +05:30
parent ca2d092166
commit 6b9de43829
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ M.git_ahead_behind_status = function()
return return
vim.b.gitsigns_status_dict vim.b.gitsigns_status_dict
and and
string.format(" %s%s%d%s%d", '%#GitStatus#', '', gstatus.behind, '', gstatus.ahead) string.format(" %s%s%d%s%d", '%#GitStatus#', ' ', gstatus.behind, ' ', gstatus.ahead)
or "" or ""
end end