dotfiles/.config/nvim/lua/plugins/lualine.lua
2023-04-19 18:26:23 +02:00

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,
},
}