fix(nvim): add trailing space after lock character for heirline
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m0s

This commit is contained in:
Price Hiller 2024-07-17 02:33:13 -05:00
parent a43b483c0e
commit 9340ed9f89
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -232,7 +232,7 @@ return {
condition = function() condition = function()
return not vim.bo.modifiable or vim.bo.readonly return not vim.bo.modifiable or vim.bo.readonly
end, end,
provider = "", provider = " ",
hl = { fg = colors.sumiInk0 }, hl = { fg = colors.sumiInk0 },
}, },
} }
@ -358,7 +358,7 @@ return {
condition = function(self) condition = function(self)
return not vim.bo[self.bufnr].modifiable or vim.bo[self.bufnr].readonly return not vim.bo[self.bufnr].modifiable or vim.bo[self.bufnr].readonly
end, end,
provider = "", provider = " ",
hl = { fg = colors.roninYellow }, hl = { fg = colors.roninYellow },
}, },
} }