vimrc.bundles 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. " Bundles - Modeline and Notes {{{
  2. " vim: set sw=2 ts=2 sts=2 et tw=78 foldmarker={{{,}}} foldlevel=0 foldmethod=marker spell:
  3. "
  4. " Vim Plugins are managed using Vundle.
  5. "
  6. " }}}
  7. " Setup Bundle Support {{{
  8. " Ensure that the ~/.vim/bundle/ system works
  9. set nocompatible
  10. filetype on
  11. filetype off
  12. set rtp+=~/.vim/bundle/vundle
  13. call vundle#rc()
  14. " }}}
  15. " Bundles {{{
  16. " Vundle managing itself!
  17. Bundle 'gmarik/vundle'
  18. if executable('ack-grep')
  19. let g:ackprg="ack-grep -H --nocolor --nogroup --column"
  20. Bundle 'mileszs/ack.vim'
  21. elseif executable('ack')
  22. Bundle 'mileszs/ack.vim'
  23. elseif executable('ag')
  24. Bundle 'mileszs/ack.vim'
  25. let g:ackprg = 'ag --nogroup --nocolor --column --smart-case'
  26. endif
  27. Bundle 'kien/ctrlp.vim'
  28. Bundle 'tacahiroy/ctrlp-funky'
  29. Bundle 'joonty/vdebug'
  30. Bundle 'tpope/vim-repeat'
  31. Bundle 'nathanaelkane/vim-indent-guides'
  32. Bundle 'altercation/vim-colors-solarized'
  33. Bundle 'tpope/vim-surround'
  34. Bundle 'spf13/vim-autoclose'
  35. Bundle 'terryma/vim-multiple-cursors'
  36. Bundle 'matchit.zip'
  37. Bundle 'sjl/gundo.vim'
  38. Bundle 'tpope/vim-abolish.git'
  39. Bundle 'scrooloose/syntastic'
  40. Bundle 'mattn/webapi-vim'
  41. Bundle 'tpope/vim-fugitive'
  42. Bundle 'mattn/gist-vim'
  43. Bundle 'scrooloose/nerdcommenter'
  44. Bundle 'godlygeek/tabular'
  45. " File Browser {{{
  46. Bundle 'scrooloose/nerdtree'
  47. Bundle 'jistr/vim-nerdtree-tabs'
  48. " }}}
  49. " Code Browser {{{
  50. if executable('ctags')
  51. Bundle 'majutsushi/tagbar'
  52. endif
  53. " }}}
  54. " Completion and Snippets {{{
  55. Bundle 'ervandew/supertab'
  56. Bundle 'MarcWeber/vim-addon-mw-utils'
  57. Bundle 'tomtom/tlib_vim'
  58. Bundle 'garbas/vim-snipmate'
  59. Bundle 'honza/vim-snippets'
  60. " Source support_function.vim to support vim-snippets.
  61. if filereadable(expand("~/.vim/bundle/vim-snippets/snippets/support_functions.vim"))
  62. source ~/.vim/bundle/vim-snippets/snippets/support_functions.vim
  63. endif
  64. " }}}
  65. Bundle 'tpope/vim-markdown'
  66. Bundle 'tpope/vim-cucumber'
  67. Bundle 'quentindecock/vim-cucumber-align-pipes'
  68. Bundle 'kchmck/vim-coffee-script'
  69. " }}}