fix(nvim): properly align file icon in winbar
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m17s

This commit is contained in:
Price Hiller 2024-09-11 09:13:14 -05:00
parent 2f4b3943f5
commit 1281b0c19d
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -186,7 +186,7 @@ return {
end
end,
provider = function(self)
return self.icon and (self.icon .. " ")
return self.icon and (" " .. self.icon .. " ")
end,
hl = function(self)
return { fg = self.icon_color }