From 218d1c89f9c117ca0d3f887f2dd1aff144e4c4a2 Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 11 May 2025 12:45:59 +0200 Subject: [PATCH] fixed neovim clone time --- neovim.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim.sh b/neovim.sh index 20ae99a..399443a 100644 --- a/neovim.sh +++ b/neovim.sh @@ -60,7 +60,7 @@ cd $cloneDir || mkdir $cloneDir && cd $cloneDir if command_exists git; then - if git clone https://github.com/neovim/neovim.git; then + if git clone --depth=1 https://github.com/neovim/neovim.git; then cd neovim || echo_error "Cannot navigate into neovim" else echo_error "Cannot clone the repo.."