fix overseer lualine integration

the previous snippet was wrong.
lualine as an extension option
This commit is contained in:
akioweh 2025-08-08 19:48:26 +04:00
parent 179bcb1790
commit d83bcf22b9
No known key found for this signature in database

View file

@ -102,10 +102,9 @@ return {
{ {
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
optional = true, optional = true,
opts = { opts = function(_, opts)
sections = { opts.extensions = opts.extensions or {}
lualine_x = { "overseer" }, opts.extensions[#opts.extensions + 1] = "overseer"
}, end,
},
}, },
} }