Advertisement
Guest User

Untitled

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