refactor(nvim): remove leading padding for ft icons in heirline
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m1s

This commit is contained in:
Price Hiller 2024-07-19 10:05:12 -05:00
parent 2c77d703fb
commit 4099d2b386
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

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