Advertisement
metalx1000

VIM plugins with pathogen

Oct 16th, 2016
639
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.59 KB | None | 0 0
  1. #https://www.howtoforge.com/tutorial/vim-editor-plugins-for-software-developers/
  2.  
  3. mkdir -p ~/.vim/autoload
  4. mkdir -p ~/.vim/bundle
  5.  
  6. wget "https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim" -O ~/.vim/autoload/pathogen.vim
  7.  
  8. echo "call pathogen#infect() " >> ~/.vimrc
  9. echo "call pathogen#helptags()" >> ~/.vimrc
  10.  
  11. cd ~/.vim/bundle/
  12. git clone git://github.com/Raimondi/delimitMate.git
  13.  
  14. #autocomplete
  15. cd ~/.vim/bundle/
  16. git clone https://github.com/Valloric/YouCompleteMe.git
  17. cd YouCompleteMe
  18. git submodule update --init --recursive
  19. ./install.sh --clang-completer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement