dotfiles/.config/nvim/lua/plugins/lualine.lua
Ahmet Kaan Gümüş e8bfb35161 feat: add new dotfiles
2025-02-22 23:29:01 +03:00

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,
}