kickstart.nvim/lua/custom/plugins/lualine.lua

14 lines
320 B
Lua

return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()
require('lualine').setup {
sections = {
lualine_c = {
{ 'filename', path = 1 }, -- This line configures the filename to show the relative path
},
},
}
end,
}