include downloading of lazy-lock.json while bootstrapping
also pin all plugins by default
This commit is contained in:
@@ -4,14 +4,14 @@ local plugins = {
|
||||
|
||||
["nvim-lua/plenary.nvim"] = {},
|
||||
|
||||
["NvChad/extensions"] = { branch = "lazy" },
|
||||
["NvChad/extensions"] = { branch = "v2.0" },
|
||||
|
||||
["NvChad/base46"] = {
|
||||
branch = "lazy",
|
||||
branch = "v2.0",
|
||||
},
|
||||
|
||||
["NvChad/ui"] = {
|
||||
branch = "lazy",
|
||||
branch = "v2.0",
|
||||
lazy = false,
|
||||
config = function()
|
||||
require "nvchad_ui"
|
||||
@@ -183,6 +183,11 @@ local plugins = {
|
||||
},
|
||||
}
|
||||
|
||||
-- pin commits for all default plugins
|
||||
for _, value in pairs(plugins) do
|
||||
value.pin = true
|
||||
end
|
||||
|
||||
plugins = require("core.utils").merge_plugins(plugins)
|
||||
|
||||
-- load lazy.nvim options
|
||||
|
||||
Reference in New Issue
Block a user