From 6b20e16151aee757b8325261fe9211326e0e6b73 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 14 Oct 2025 12:11:15 +0000 Subject: [PATCH] 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. --- lua/user/plugins.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index b897e0d..ae6d19b 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -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/*