fix(lazy): added error handling for bootstrap (#1001)

This commit is contained in:
Folke Lemaitre 2024-07-16 18:06:47 +02:00 committed by GitHub
parent f5c919558b
commit 3e55ff1a83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -209,7 +209,10 @@ vim.api.nvim_create_autocmd('TextYankPost', {
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
local out = vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
if vim.v.shell_error ~= 0 then
error('Error cloning lazy.nvim:\n' .. out)
end
end ---@diagnostic disable-next-line: undefined-field
vim.opt.rtp:prepend(lazypath)