lazyvim-starter

My configuration changes to https://github.com/LazyVim/starter
git clone https://git.eamoncaddigan.net/lazyvim-starter.git
Log | Files | Refs | README | LICENSE

commit 7a10a75dc3fc2fc6a4f35f2eb33d12995ac9efca
parent cb6349c8ae922d1c5745574f4d17b44f2731d451
Author: Iordanis Petkakis <12776461+dpetka2001@users.noreply.github.com>
Date:   Tue, 22 Oct 2024 12:11:31 +0300

docs: fix `lualine` component example (#95)

As per https://github.com/LazyVim/LazyVim/issues/4544 it creates
confusion to the users who are just trying out the example to try things
out. Better to avoid such misinterpretations in the future.

I'm assuming this will also update the docs automatically as I can
deduce from
https://github.com/LazyVim/lazyvim.github.io/blob/25af26046a30be110f0aa19c87ad2a1a1e53ce45/lua/build.lua#L369-L372?
Diffstat:
Mlua/plugins/example.lua | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

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