refactor(nvim): show cwd on statusbar

This commit is contained in:
Price Hiller 2024-03-11 23:07:25 -05:00
parent 26398a67c9
commit b50bf28943
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -937,15 +937,46 @@ return {
},
},
margin(1),
{
{
{
provider = seps.full.left,
hl = { fg = colors.sumiInk4, bg = utils.get_highlight("StatusLine").bg },
hl = {
fg = colors.lightBlue,
bg = utils.get_highlight("StatusLine").bg,
},
},
{
FileNameBlock,
static = {
bg_color_right = utils.get_highlight("StatusLine").bg,
provider = "",
hl = {
fg = colors.sumiInk0,
bg = colors.lightBlue,
},
},
{
provider = seps.full.right,
hl = {
fg = colors.lightBlue,
bg = colors.waveAqua2
},
},
{
provider = function()
local cwd = vim.fn.fnamemodify(vim.uv.cwd(), ":~")
cwd = (cwd == "~" and cwd .. "/" or cwd)
return " " .. cwd
end,
hl = {
fg = colors.sumiInk0,
bg = colors.waveAqua2
},
},
{
provider = seps.full.right,
hl = {
fg = colors.waveAqua2,
bg = utils.get_highlight("StatusLine").bg,
},
},
},
},