refactor(nvim): show cwd
on statusbar
This commit is contained in:
parent
26398a67c9
commit
b50bf28943
@ -937,15 +937,46 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
margin(1),
|
margin(1),
|
||||||
|
{
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
provider = seps.full.left,
|
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,
|
provider = " ",
|
||||||
static = {
|
hl = {
|
||||||
bg_color_right = utils.get_highlight("StatusLine").bg,
|
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,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user