21 lines
517 B
Lua
21 lines
517 B
Lua
return {
|
|
{
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
options = {
|
|
theme = 'pywal',
|
|
section_separators = { left = '/', right = '/' },
|
|
component_separators = { left = '/', right = '/' },
|
|
},
|
|
sections = {
|
|
lualine_a = {'mode'},
|
|
lualine_b = {'filename'},
|
|
lualine_c = {''},
|
|
lualine_x = {'filetype'},
|
|
lualine_y = {'progress'},
|
|
lualine_z = {'location'},
|
|
},
|
|
},
|
|
},
|
|
}
|