Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wklken/k-vim
Browse files Browse the repository at this point in the history
  • Loading branch information
wklken committed Jun 1, 2014
2 parents 5241e39 + 210b5f5 commit 86829af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ lnif() {

echo "Step1: backing up current vim config"
today=`date +%Y%m%d`
for i in $HOME/.vim $HOME/.vimrc $HOME/.gvimrc; do [ -e $i ] && [ ! -L $i ] && mv $i $i.$today; done
for i in $HOME/.vim $HOME/.vimrc $HOME/.gvimrc; do [ -L $i ] && unlink $i ; done
for i in $HOME/.vim $HOME/.vimrc $HOME/.gvimrc $HOME/.vimrc.bundles; do [ -e $i ] && [ ! -L $i ] && mv $i $i.$today; done
for i in $HOME/.vim $HOME/.vimrc $HOME/.gvimrc $HOME/.vimrc.bundles; do [ -L $i ] && unlink $i ; done


echo "Step2: setting up symlinks"
Expand All @@ -39,7 +39,7 @@ export SHELL=$system_shell


echo "Step5: compile YouCompleteMe"
echo "It will take a long time, juse be patient!"
echo "It will take a long time, just be patient!"
echo "If error,you need to compile it yourself"
echo "cd $CURRENT_DIR/bundle/YouCompleteMe/ && bash -x install.sh --clang-completer"
cd $CURRENT_DIR/bundle/YouCompleteMe/
Expand Down

0 comments on commit 86829af

Please sign in to comment.