fix: remove dashboard startup section (no lazy.nvim)

This commit is contained in:
antoine 2026-04-19 10:14:19 +02:00
parent 9c8ef71689
commit 9385589aeb
Signed by: antoine
GPG key ID: 9EB6BAADC51B6133

View file

@ -12,6 +12,13 @@
registers = "unnamedplus";
};
luaConfigRC.lazy-stats-shim = lib.nvim.dag.entryAfter ["globalsScript"] ''
-- Shim lazy.stats so snacks dashboard doesn't error without lazy.nvim
package.loaded["lazy.stats"] = {
stats = function() return { startuptime = 0, count = 0, loaded = 0 } end
}
'';
luaConfigRC.options = lib.nvim.dag.entryAfter ["globalsScript"] ''
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2