Advertisement
Guest User

plugins.vim

a guest
Sep 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. " https://github.com/VundleVim/Vundle.vim#quick-start
  2.  
  3. filetype off " required
  4.  
  5. " set the runtime path to include Vundle and initialize
  6. set rtp+=~/.vim/bundle/Vundle.vim
  7. call vundle#begin()
  8.  
  9. " let Vundle manage Vundle, required
  10. Plugin 'VundleVim/Vundle.vim'
  11.  
  12. " The following are examples of different formats supported.
  13. " Keep Plugin commands between vundle#begin/end.
  14. " plugin on GitHub repo
  15. "Plugin 'airblade/vim-gitgutter'
  16. Plugin 'bling/vim-airline'
  17. "Plugin 'editorconfig/editorconfig-vim'
  18. Plugin 'jceb/vim-orgmode'
  19. Plugin 'jeffkreeftmeijer/vim-numbertoggle'
  20. Plugin 'mfukar/robotframework-vim'
  21. "Plugin 'tomasr/molokai'
  22. Plugin 'tpope/vim-fugitive'
  23. "Plugin 'tpope/vim-pathogen'
  24. Plugin 'tpope/vim-speeddating'
  25. if hostname() != "gentle"
  26. Plugin 'Valloric/YouCompleteMe'
  27. endif
  28.  
  29. " All of your Plugins must be added before the following line
  30. call vundle#end() " required
  31. filetype plugin indent on " required
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement