From b4f7c7a550df3927ad6c625356d09dfd402b417d Mon Sep 17 00:00:00 2001 From: ralbt Date: Fri, 3 Apr 2015 17:04:04 +0530 Subject: [PATCH] Update install-script.sh: Changing source url of neobundle.vim URL(https://githubusercontent.com/Shougo/neobundle.vim) is giving page 404 error. So changing it to URL given in manual installation. --- install-script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-script.sh b/install-script.sh index bd7e25a..a8d0f1b 100644 --- a/install-script.sh +++ b/install-script.sh @@ -5,7 +5,7 @@ curl https://raw.githubusercontent.com/Slava/vimrc/master/.vimrc > ~/.vimrc # Install the bundler mkdir -p ~/.vim/bundle -git clone https://githubusercontent.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim +git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim # Install all bundles vim -c "NeoBundleInstall" -c "q"