Advertisement
metalx1000

Setting up Vundle

May 2nd, 2017
738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.90 KB | None | 0 0
  1. #setting up vundle
  2. #https://www.digitalocean.com/community/tutorials/how-to-use-vundle-to-manage-vim-plugins-on-a-linux-vps
  3. git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
  4.  
  5. ##########################add to ~/.vimrc
  6. set nocompatible
  7. filetype off
  8. set rtp+=~/.vim/bundle/vundle/
  9. call vundle#rc()
  10.  
  11. " This is the Vundle package, which can be found on GitHub.
  12. " For GitHub repos, you specify plugins using the
  13. " 'user/repository' format
  14. Plugin 'gmarik/vundle'
  15.  
  16. " We could also add repositories with a ".git" extension
  17. Plugin 'scrooloose/nerdtree.git'
  18.  
  19. " To get plugins from Vim Scripts, you can reference the plugin
  20. " by name as it appears on the site
  21. Plugin 'Buffergator'
  22.  
  23. " Now we can turn our filetype functionality back on
  24. filetype plugin indent on
  25.  
  26.  
  27. #####################now go into vim and run this#########
  28. :PluginInstall
  29. #it might ask for your git username and password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement