mirror of https://github.com/LazyVim/starter
11 lines
235 B
Lua
11 lines
235 B
Lua
|
return {
|
||
|
-- 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,
|
||
|
},
|
||
|
}
|