nvim/lua/plugins/lualine.lua

14 lines
226 B
Lua
Raw Normal View History

2024-03-03 18:01:30 -05:00
return {
'nvim-lualine/lualine.nvim',
2024-10-20 12:25:10 -04:00
dependencies = {
'nvim-tree/nvim-web-devicons'
2024-03-03 18:01:30 -05:00
},
config = function()
require('lualine').setup({
2024-03-03 18:01:30 -05:00
options= {
2025-04-15 11:13:34 -04:00
theme = 'gruvbox-material'
2024-03-03 18:01:30 -05:00
}
})
end
}