add relative path to lualine
This commit is contained in:
parent
2518095dcb
commit
68cd6493f4
|
|
@ -2,6 +2,12 @@ return {
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||||
config = function()
|
config = function()
|
||||||
require('lualine').setup {}
|
require('lualine').setup {
|
||||||
|
sections = {
|
||||||
|
lualine_c = {
|
||||||
|
{ 'filename', path = 1 }, -- This line configures the filename to show the relative path
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue