vimrc.bundles 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. if executable('phpctags')
  53. Bundle 'vim-php/tagbar-phpctags.vim'
  54. endif
  55. endif
  56. " }}}
  57. " Completion and Snippets {{{
  58. Bundle 'ervandew/supertab'
  59. Bundle 'MarcWeber/vim-addon-mw-utils'
  60. Bundle 'tomtom/tlib_vim'
  61. Bundle 'garbas/vim-snipmate'
  62. Bundle 'honza/vim-snippets'
  63. " Source support_function.vim to support vim-snippets.
  64. if filereadable(expand("~/.vim/bundle/vim-snippets/snippets/support_functions.vim"))
  65. source ~/.vim/bundle/vim-snippets/snippets/support_functions.vim
  66. endif
  67. " }}}
  68. " Coding Language Support {{{
  69. Bundle 'shawncplus/phpcomplete.vim'
  70. Bundle 'tpope/vim-markdown'
  71. Bundle 'tpope/vim-cucumber'
  72. Bundle 'quentindecock/vim-cucumber-align-pipes'
  73. Bundle 'kchmck/vim-coffee-script'
  74. " }}}
  75. " }}}