UpdateVimPlugins 447 B

12345678910111213141516171819
  1. #!/bin/bash
  2. git submodule foreach git pull origin master
  3. echo "Compiling YouCompleteMe"
  4. cd "$DIR"/vim/bundle/YouCompleteMe
  5. ./install.sh --clang-completer
  6. read -p "Auto install exuberant-ctags? [y/N] " -n 1 -r
  7. if [[ $REPLY =~ ^[Yy]$ ]]; then
  8. echo ""
  9. git clone git://github.com/jakedouglas/exuberant-ctags.git ~/exuberant-ctags
  10. cd ~/exuberant-ctags
  11. ./configure
  12. make
  13. sudo make install
  14. rm -r ~/exuberant-ctags
  15. fi
  16. echo ""