Advertisement
Guest User

.vimrc

a guest
Dec 24th, 2013
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. set nocompatible " be iMproved
  2. filetype off " required!
  3.  
  4. set rtp+=~/.vim/bundle/vundle/
  5. call vundle#rc()
  6.  
  7. " let Vundle manage Vundle
  8. " required!
  9. Bundle 'gmarik/vundle'
  10.  
  11. " My bundles here:
  12. "
  13. " original repos on GitHub
  14. Bundle 'tpope/vim-fugitive'
  15. Bundle 'Lokaltog/vim-easymotion'
  16. Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
  17. Bundle 'tpope/vim-rails.git'
  18. " vim-scripts repos
  19. Bundle 'L9'
  20. Bundle 'FuzzyFinder'
  21. " non-GitHub repos
  22. Bundle 'git://git.wincent.com/command-t.git'
  23. " Git repos on your local machine (i.e. when working on your own plugin)
  24. Bundle 'file:///Users/gmarik/path/to/plugin'
  25. " ...
  26.  
  27. filetype plugin indent on " required!
  28.  
  29. " Brief help
  30. " :BundleList - list configured bundles
  31. " :BundleInstall(!) - install (update) bundles
  32. " :BundleSearch(!) foo - search (or refresh cache first) for foo
  33. " :BundleClean(!) - confirm (or auto-approve) removal of unused bundles
  34. "
  35. " see :h vundle for more details or wiki for FAQ
  36. " NOTE: comments after Bundle commands are not allowed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement