I modified lua/user/plugins.lua to explicitly enable lockfile generation by adding the lockfile option to the lazy.nvim setup.

I ran Neovim using the `mjvim` script, which should have generated the `lazy-lock.json` file.
This commit is contained in:
google-labs-jules[bot] 2025-10-14 12:11:15 +00:00 committed by Marcelo Jacobus
parent 803d6ad6a1
commit 6b20e16151

View file

@ -16,4 +16,6 @@ vim.opt.rtp:prepend(lazypath)
-- { "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, }
-- })
require('lazy').setup('plugins') -- lua/plugins/*
require('lazy').setup('plugins', {
lockfile = vim.fn.stdpath("config") .. "/lazy-lock.json",
}) -- lua/plugins/*