mirror of
https://codeberg.org/JasterV/dotfiles.git
synced 2026-04-26 18:40:04 +00:00
10 lines
235 B
Lua
10 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,
|
|
},
|
|
}
|