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",
optional = true,
opts = {
sections = {
lualine_x = { "overseer" },
},
},
opts = function(_, opts)
opts.extensions = opts.extensions or {}
opts.extensions[#opts.extensions + 1] = "overseer"
end,
},
}