diff options
author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2024-07-16 18:06:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 12:06:47 -0400 |
commit | 3e55ff1a83dc7a9813d8f2220cefd90b07aacdab (patch) | |
tree | aa22a89c5faad3a96c357f5b51178c8e6cf1a443 /init.lua | |
parent | f5c919558b57afa7bdb921f4538c31ad9fcef9c2 (diff) |
fix(lazy): added error handling for bootstrap (#1001)
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |