summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/example.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua
index 4ad9825..17f53d6 100644
--- a/lua/plugins/example.lua
+++ b/lua/plugins/example.lua
@@ -157,7 +157,11 @@ return {
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function(_, opts)
- table.insert(opts.sections.lualine_x, "😄")
+ table.insert(opts.sections.lualine_x, {
+ function()
+ return "😄"
+ end,
+ })
end,
},