mirror of https://github.com/folke/lazy.nvim.git
feat: added bootstrap code
This commit is contained in:
parent
0774f1bc25
commit
ceeeda36e8
|
@ -19,6 +19,7 @@
|
||||||
- [ ] package-lock.lua
|
- [ ] package-lock.lua
|
||||||
- [x] tag/version support `git tag --sort version:refname`
|
- [x] tag/version support `git tag --sort version:refname`
|
||||||
- [x] auto-loading on completion for lazy-loaded commands
|
- [x] auto-loading on completion for lazy-loaded commands
|
||||||
|
- [x] bootstrap code
|
||||||
- [x] semver https://devhints.io/semver
|
- [x] semver https://devhints.io/semver
|
||||||
https://semver.npmjs.com/
|
https://semver.npmjs.com/
|
||||||
|
|
||||||
|
|
|
@ -72,4 +72,19 @@ function M.stats()
|
||||||
return ret
|
return ret
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function M.bootstrap()
|
||||||
|
local lazypath = vim.fn.stdpath("data") .. "/site/pack/lazy/start/lazy.nvim"
|
||||||
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
|
vim.fn.system({
|
||||||
|
"git",
|
||||||
|
"clone",
|
||||||
|
"--filter=blob:none",
|
||||||
|
"--single-branch",
|
||||||
|
"https://github.com/folke/lazy.nvim.git",
|
||||||
|
lazypath,
|
||||||
|
})
|
||||||
|
vim.opt.runtimepath:append(lazypath)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
Loading…
Reference in New Issue