Skip to content

Instantly share code, notes, and snippets.

@NigoroJr
Last active October 16, 2016 16:31
Show Gist options
  • Save NigoroJr/9900648 to your computer and use it in GitHub Desktop.
Save NigoroJr/9900648 to your computer and use it in GitHub Desktop.
Sets up Vim for Windows. Clones neobundle.vim and vimproc.vim, and builds necessary files for vimproc.vim
# This script builds the dll required for vimproc.vim under cygwin environment
DEST=$1
if [ ! -d $DEST/.vim/bundle/vimproc.vim ]; then
echo "No vimproc.vim found"
exit 0
fi
cd $DEST/.vim/bundle/vimproc.vim
make -f make_cygwin.mak
# vim: ff=unix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment