1
0
Fork 0

nvim: refactor bootstrap

This commit is contained in:
Von Random 2023-09-26 09:31:22 +03:00
parent 87c7aa23fe
commit bfded8cd9f

View file

@ -1,12 +1,8 @@
-- [[ plugins bootstrap ]] -- [[ plugins bootstrap ]]
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then local lazyurl = "https://github.com/folke/lazy.nvim.git"
vim.fn.system { local lazycmd = { "git", "clone", "--filter=blob:none", "--branch=stable", lazyurl, lazypath }
"git", "clone", "--filter=blob:none", if not vim.loop.fs_stat(lazypath) then vim.fn.system(lazycmd) end
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", lazypath
}
end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
--[[ plugins list ]] --[[ plugins list ]]