Merge branch 'main' into main

pull/99/head
FM39hz 2024-10-30 12:39:19 +07:00 committed by fm39hz-laptop
commit 657cacd2e4
1 changed files with 12 additions and 8 deletions

View File

@ -152,14 +152,18 @@ return {
end, end,
}, },
-- the opts function can also be used to change the default opts: -- the opts function can also be used to change the default opts:
{ {
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = function(_, opts) opts = function(_, opts)
table.insert(opts.sections.lualine_x, "😄") table.insert(opts.sections.lualine_x, {
end, function()
}, return "😄"
end,
})
end,
},
-- or you can return new options to override all the defaults -- or you can return new options to override all the defaults
{ {