11 lines
263 B
Lua
11 lines
263 B
Lua
return {
|
|
'vim-airline/vim-airline',
|
|
dependencies = {
|
|
'vim-airline/vim-airline-themes',
|
|
},
|
|
init = function()
|
|
vim.g.airline_powerline_fonts = 1
|
|
vim.g.airline_theme = 'bubblegum'
|
|
end, -- Lazy load the configuration when vim-airline is loaded
|
|
}
|