From 8af24c40bbb660caf58751754498cd6b566f0a74 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Sun, 17 Oct 2021 21:03:03 +0300 Subject: [PATCH] Use wget instead of curl --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index a8f37cb..edcc023 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -47,8 +47,8 @@ ln -s $PWD/picom.conf $picomFile ln -s $PWD/.gitconfig $gitconfigFile # Install vim-plug -curl -fLo ~/.config/nvim/autoload/plug.vim \ - --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +mkdir -p $nvimDir/autoload +wget -O $nvimDir/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim # Install vim plugins nvim -c "PlugInstall"