mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
23 lines
448 B
Lua
23 lines
448 B
Lua
return {
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
options = {
|
|
section_separators = { left = '', right = '' },
|
|
component_separators = { left = '|', right = '|' },
|
|
theme = vim.g.colors_name,
|
|
refresh = {
|
|
statusline = 1000,
|
|
},
|
|
},
|
|
sections = {
|
|
lualine_c = {
|
|
{
|
|
'filename',
|
|
path = 1,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|