nvim/lua/plugins/lualine.lua

14 lines
218 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-12 14:51:42 -04:00
theme = 'material'
2024-03-03 18:01:30 -05:00
}
})
end
}