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,
},
-- the opts function can also be used to change the default opts:
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function(_, opts)
table.insert(opts.sections.lualine_x, "😄")
end,
},
-- the opts function can also be used to change the default opts:
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function(_, opts)
table.insert(opts.sections.lualine_x, {
function()
return "😄"
end,
})
end,
},
-- or you can return new options to override all the defaults
{