mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
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:
parent
803d6ad6a1
commit
6b20e16151
1 changed files with 3 additions and 1 deletions
|
|
@ -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/*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue