From 465fbd00ef15d752d609203d442838b735c966db Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sat, 2 Jul 2016 12:00:33 -0700 Subject: [PATCH] Moving location of installer --- .vim/install.sh => install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .vim/install.sh => install.sh (64%) diff --git a/.vim/install.sh b/install.sh similarity index 64% rename from .vim/install.sh rename to install.sh index 7397340..562f887 100755 --- a/.vim/install.sh +++ b/install.sh @@ -1,17 +1,17 @@ #!/bin/sh # YouCompleteMe -pushd ./bundle/YouCompleteMe +pushd .vim/bundle/YouCompleteMe git submodule update --init --recursive ./install.py popd # tern_for_vim -pushd ./bundle/tern_for_vim +pushd .vim/bundle/tern_for_vim sudo npm install -g tern npm install popd # syntastic sudo npm -g install eslint -sudo pip install pyflakes +sudo pip install pyflakes --upgrade