add: Packer snapshot feature (#721)
This commit is contained in:
parent
36aeebc580
commit
985217b93f
|
@ -31,6 +31,7 @@ M.plugins = {
|
|||
options = {
|
||||
packer = {
|
||||
init_file = "plugins.packerInit",
|
||||
snapshot = nil,
|
||||
},
|
||||
lspconfig = {
|
||||
setup_lspconf = "", -- path of lspconfig file
|
||||
|
|
|
@ -68,6 +68,22 @@ local packer_cmd = function(callback)
|
|||
end
|
||||
end
|
||||
|
||||
-- snapshot stuff
|
||||
user_cmd("PackerSnapshot", function(info)
|
||||
require "plugins"
|
||||
require("packer").snapshot(info.args)
|
||||
end, { nargs = "+" })
|
||||
|
||||
user_cmd("PackerSnapshotDelete", function(info)
|
||||
require "plugins"
|
||||
require("packer.snapshot").delete(info.args)
|
||||
end, { nargs = "+" })
|
||||
|
||||
user_cmd("PackerSnapshotRollback", function(info)
|
||||
require "plugins"
|
||||
require("packer").rollback(info.args)
|
||||
end, { nargs = "+" })
|
||||
|
||||
user_cmd("PackerClean", packer_cmd "clean", {})
|
||||
user_cmd("PackerCompile", packer_cmd "compile", {})
|
||||
user_cmd("PackerInstall", packer_cmd "install", {})
|
||||
|
|
|
@ -27,6 +27,8 @@ if not present then
|
|||
end
|
||||
end
|
||||
|
||||
local user_snapshot = require("core.utils").load_config().snapshot
|
||||
|
||||
packer.init {
|
||||
display = {
|
||||
open_fn = function()
|
||||
|
@ -39,6 +41,7 @@ packer.init {
|
|||
},
|
||||
auto_clean = true,
|
||||
compile_on_sync = true,
|
||||
snapshot = user_snapshot,
|
||||
}
|
||||
|
||||
return packer
|
||||
|
|
Loading…
Reference in New Issue