22 lines
387 B
Lua
22 lines
387 B
Lua
|
return {
|
||
|
'nvim-lualine/lualine.nvim',
|
||
|
opts = {
|
||
|
options = {
|
||
|
icons_enabled = false,
|
||
|
theme = 'gruvbox-material',
|
||
|
statusline_style = 'mix',
|
||
|
component_separators = '|',
|
||
|
section_separators = '',
|
||
|
},
|
||
|
sections = {
|
||
|
lualine_c = {
|
||
|
{
|
||
|
'filename',
|
||
|
file_status = true,
|
||
|
path = 1,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|