refactor(nvim): show cwd
on statusbar
This commit is contained in:
parent
26398a67c9
commit
b50bf28943
@ -557,7 +557,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
provider = function(self)
|
provider = function(self)
|
||||||
return " " .. (vim.diagnostic.is_disabled(self.bufnr) and " " or" " )
|
return " " .. (vim.diagnostic.is_disabled(self.bufnr) and " " or " ")
|
||||||
end,
|
end,
|
||||||
hl = {
|
hl = {
|
||||||
bg = colors.oniViolet,
|
bg = colors.oniViolet,
|
||||||
@ -939,13 +939,44 @@ return {
|
|||||||
margin(1),
|
margin(1),
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
provider = seps.full.left,
|
{
|
||||||
hl = { fg = colors.sumiInk4, bg = utils.get_highlight("StatusLine").bg },
|
provider = seps.full.left,
|
||||||
},
|
hl = {
|
||||||
{
|
fg = colors.lightBlue,
|
||||||
FileNameBlock,
|
bg = utils.get_highlight("StatusLine").bg,
|
||||||
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,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user