Skip to content

Commit 4dfa5da

Browse files
committed
move code position
1 parent bec2d15 commit 4dfa5da

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

install.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@ if [ ! -d $vundle ]; then
1616
git clone https://github.com/VundleVim/Vundle.vim.git $vundle
1717
fi
1818

19-
# Compile "Shougo/vimproc.vim" manually
20-
if [ ! -f $bundle/vimproc.vim/lib/*.so ]; then
21-
CURRENT_DIR=$PWD
22-
cd $bundle/vimproc.vim && make > /dev/null
23-
cd $CURRENT_DIR
24-
fi
25-
2619
# Copy dotfiles
2720
dotfiles=(
2821
.vimrc
@@ -33,6 +26,13 @@ for i in ${dotfiles[@]}; do curl -L $repo/$i > $HOME/$i; done
3326
# PluginInstall: "VundleVim/Vundle.vim" plugin's install command.
3427
vim +PluginInstall +GoInstallBinaries +qall < /dev/tty
3528

29+
# Compile "Shougo/vimproc.vim" manually
30+
if [ ! -f $bundle/vimproc.vim/lib/*.so ]; then
31+
CURRENT_DIR=$PWD
32+
cd $bundle/vimproc.vim && make > /dev/null
33+
cd $CURRENT_DIR
34+
fi
35+
3636
# Copy snippets
3737
snippets=(
3838
snippets/_.snippets

0 commit comments

Comments
 (0)