mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
15 lines
315 B
Lua
15 lines
315 B
Lua
return {
|
|
{
|
|
"pojokcodeid/auto-lualine.nvim",
|
|
event = { "InsertEnter", "BufRead", "BufNewFile" },
|
|
dependencies = { "nvim-lualine/lualine.nvim" },
|
|
opts = {
|
|
setColor = "auto",
|
|
setOption = "roundedall",
|
|
setMode = 5,
|
|
},
|
|
config = function(_, opts)
|
|
require("auto-lualine").setup(opts)
|
|
end,
|
|
},
|
|
}
|