vimrc.bundles 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 'kshenoy/vim-signature'
  32. Bundle 'itchyny/lightline.vim'
  33. Bundle 'haya14busa/vim-asterisk'
  34. Bundle 'nathanaelkane/vim-indent-guides'
  35. Bundle 'altercation/vim-colors-solarized'
  36. Bundle 'cinaeco/EasyGrep'
  37. Bundle 'tpope/vim-surround'
  38. "Bundle 'spf13/vim-autoclose'
  39. Bundle 'Raimondi/delimitMate'
  40. Bundle 'deris/vim-shot-f'
  41. Bundle 'terryma/vim-multiple-cursors'
  42. Bundle 'matchit.zip'
  43. "Bundle 'sjl/gundo.vim'
  44. Bundle 'tpope/vim-abolish.git'
  45. Bundle 'tpope/vim-unimpaired.git'
  46. Bundle 'scrooloose/syntastic'
  47. "Bundle 'mattn/webapi-vim'
  48. Bundle 'tpope/vim-fugitive'
  49. "Bundle 'mattn/gist-vim'
  50. Bundle 'scrooloose/nerdcommenter'
  51. Bundle 'godlygeek/tabular'
  52. Bundle 'tristen/vim-sparkup'
  53. Bundle 'haya14busa/incsearch.vim'
  54. "Bundle 'katono/rogue.vim'
  55. " Text Objects {{{
  56. Bundle 'kana/vim-textobj-user'
  57. Bundle 'kana/vim-textobj-entire'
  58. Bundle 'bkad/CamelCaseMotion'
  59. Bundle 'vim-scripts/argtextobj.vim'
  60. " }}}
  61. "
  62. Bundle 'vim-scripts/yaml.vim'
  63. " File Browser {{{
  64. Bundle 'scrooloose/nerdtree'
  65. Bundle 'jistr/vim-nerdtree-tabs'
  66. " }}}
  67. " Code Browser {{{
  68. if executable('ctags')
  69. Bundle 'majutsushi/tagbar'
  70. if executable('phpctags')
  71. Bundle 'vim-php/tagbar-phpctags.vim'
  72. endif
  73. endif
  74. " }}}
  75. " Completion and Snippets {{{
  76. "Bundle 'ervandew/supertab'
  77. "Bundle 'MarcWeber/vim-addon-mw-utils'
  78. "Bundle 'tomtom/tlib_vim'
  79. "Bundle 'garbas/vim-snipmate'
  80. "Bundle 'honza/vim-snippets'
  81. "" Source support_function.vim to support vim-snippets.
  82. "if filereadable(expand("~/.vim/bundle/vim-snippets/snippets/support_functions.vim"))
  83. "source ~/.vim/bundle/vim-snippets/snippets/support_functions.vim
  84. "endif
  85. Bundle 'ajh17/VimCompletesMe'
  86. " }}}
  87. " Coding Language Support {{{
  88. Bundle 'shawncplus/phpcomplete.vim'
  89. Bundle 'tpope/vim-markdown'
  90. Bundle 'tpope/vim-cucumber'
  91. Bundle 'quentindecock/vim-cucumber-align-pipes'
  92. Bundle 'kchmck/vim-coffee-script'
  93. Bundle 'mintplant/vim-literate-coffeescript'
  94. Bundle 'groenewege/vim-less'
  95. Bundle 'elzr/vim-json'
  96. " }}}
  97. " }}}