From e1e90a7892ffb837c4806559b3f06bc3ada7b874 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Mon, 23 Aug 2021 18:25:57 -0300 Subject: [PATCH] Fix missing https --- post-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-install.sh b/post-install.sh index a078f4e..e431038 100755 --- a/post-install.sh +++ b/post-install.sh @@ -491,7 +491,7 @@ repos() { configure_nvim_for() { echo -n "Downloading vim-plug for $1..." quiet sudo -u "$1" curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ - ://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim echo "done" echo -n "Installing neovim plugins for $1..."