plugins.vim 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. " Plugins {{{
  2. " vim: set sw=2 ts=2 sts=2 et tw=78 foldmarker={{{,}}} foldlevel=0 foldmethod=marker spell:
  3. "
  4. " Vim Plugin Setup Script
  5. "
  6. " This file is used from 2 places:
  7. " - vimrc
  8. " - setup.sh
  9. " }}}
  10. call plug#begin('~/.vim/plugged')
  11. "if executable('ack-grep')
  12. "let g:ackprg="ack-grep -H --nocolor --nogroup --column"
  13. "Plug 'mileszs/ack.vim'
  14. "elseif executable('ack')
  15. "Plug 'mileszs/ack.vim'
  16. "elseif executable('ag')
  17. "Plug 'mileszs/ack.vim'
  18. "let g:ackprg = 'ag --nogroup --nocolor --column --smart-case'
  19. "endif
  20. Plug 'kien/ctrlp.vim'
  21. Plug 'tacahiroy/ctrlp-funky'
  22. Plug 'joonty/vdebug'
  23. Plug 'tpope/vim-repeat'
  24. Plug 'kshenoy/vim-signature'
  25. Plug 'itchyny/lightline.vim'
  26. Plug 'haya14busa/vim-asterisk'
  27. Plug 'nathanaelkane/vim-indent-guides'
  28. Plug 'altercation/vim-colors-solarized'
  29. Plug 'cinaeco/EasyGrep'
  30. Plug 'tpope/vim-surround'
  31. Plug 'Raimondi/delimitMate'
  32. Plug 'terryma/vim-multiple-cursors'
  33. Plug 'matchit.zip'
  34. Plug 'tpope/vim-abolish'
  35. Plug 'tpope/vim-unimpaired'
  36. Plug 'scrooloose/syntastic'
  37. Plug 'tpope/vim-fugitive'
  38. Plug 'scrooloose/nerdcommenter'
  39. Plug 'godlygeek/tabular'
  40. Plug 'tristen/vim-sparkup'
  41. "Plug 'sjl/gundo.vim'
  42. "Plug 'katono/rogue.vim'
  43. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  44. "Plug 'deris/vim-shot-f' - interferes with macro
  45. " Text Objects {{{
  46. Plug 'kana/vim-textobj-user'
  47. Plug 'kana/vim-textobj-entire'
  48. Plug 'bkad/CamelCaseMotion'
  49. Plug 'vim-scripts/argtextobj.vim'
  50. " }}}
  51. " File Browser {{{
  52. Plug 'scrooloose/nerdtree'
  53. Plug 'jistr/vim-nerdtree-tabs'
  54. " }}}
  55. " Code Browser {{{
  56. if executable('ctags')
  57. Plug 'majutsushi/tagbar'
  58. if executable('phpctags')
  59. Plug 'vim-php/tagbar-phpctags.vim'
  60. endif
  61. endif
  62. " }}}
  63. " Completion and Snippets {{{
  64. "Plug 'ervandew/supertab'
  65. "Plug 'MarcWeber/vim-addon-mw-utils'
  66. "Plug 'tomtom/tlib_vim'
  67. "Plug 'garbas/vim-snipmate'
  68. "Plug 'honza/vim-snippets'
  69. "" Source support_function.vim to support vim-snippets.
  70. "if filereadable(expand("~/.vim/bundle/vim-snippets/snippets/support_functions.vim"))
  71. "source ~/.vim/bundle/vim-snippets/snippets/support_functions.vim
  72. "endif
  73. Plug 'ajh17/VimCompletesMe'
  74. " }}}
  75. " Coding Language Support {{{
  76. Plug 'shawncplus/phpcomplete.vim'
  77. Plug 'tpope/vim-markdown'
  78. Plug 'tpope/vim-cucumber'
  79. Plug 'quentindecock/vim-cucumber-align-pipes'
  80. Plug 'kchmck/vim-coffee-script'
  81. Plug 'mintplant/vim-literate-coffeescript'
  82. Plug 'groenewege/vim-less'
  83. Plug 'elzr/vim-json'
  84. Plug 'vim-scripts/yaml.vim'
  85. " }}}
  86. call plug#end()