mirror of https://github.com/LazyVim/starter
Merge branch 'main' into main
commit
657cacd2e4
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue