mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
16 lines
315 B
Lua
16 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,
|
||
|
},
|
||
|
}
|