]> git.localhorst.tv Git - nvim-config.git/commitdiff
fix: add error handling to initial clone
authorFolke Lemaitre <folke.lemaitre@gmail.com>
Wed, 3 Jul 2024 08:19:46 +0000 (10:19 +0200)
committerFolke Lemaitre <folke.lemaitre@gmail.com>
Wed, 3 Jul 2024 08:19:46 +0000 (10:19 +0200)
lua/config/lazy.lua

index 4aeb4bdca29234766b35e033a23905aab43f028c..732f55a737891f0388affa26f079f3ac42832c8a 100644 (file)
@@ -1,9 +1,16 @@
 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
-
 if not (vim.uv or vim.loop).fs_stat(lazypath) then
-  -- bootstrap lazy.nvim
-  -- stylua: ignore
-  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
+  local lazyrepo = "https://github.com/folke/lazy.nvim.git"
+  local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
+  if vim.v.shell_error ~= 0 then
+    vim.api.nvim_echo({
+      { "Failed to clone lazy.nvim:\n", "ErrorMsg" },
+      { out, "WarningMsg" },
+      { "\nPress any key to exit..." },
+    }, true, {})
+    vim.fn.getchar()
+    os.exit(1)
+  end
 end
 vim.opt.rtp:prepend(lazypath)