14 lines
362 B
Lua
14 lines
362 B
Lua
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
config = function()
|
|
require("lualine").setup({
|
|
options = {
|
|
theme = "auto"
|
|
-- theme = "horizon"
|
|
-- theme = "OceanicNext"
|
|
-- theme = "ayu_dark"
|
|
}
|
|
})
|
|
end,
|
|
}
|