plugins.vim 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 'joonty/vdebug'
  21. Plug 'tpope/vim-repeat'
  22. Plug 'kshenoy/vim-signature'
  23. Plug 'itchyny/lightline.vim'
  24. Plug 'haya14busa/vim-asterisk'
  25. Plug 'nathanaelkane/vim-indent-guides'
  26. Plug 'altercation/vim-colors-solarized'
  27. Plug 'tpope/vim-surround'
  28. Plug 'matchit.zip'
  29. Plug 'Raimondi/delimitMate'
  30. Plug 'terryma/vim-multiple-cursors'
  31. Plug 'tpope/vim-abolish'
  32. Plug 'tpope/vim-unimpaired'
  33. Plug 'scrooloose/syntastic'
  34. Plug 'tpope/vim-fugitive'
  35. Plug 'scrooloose/nerdcommenter'
  36. Plug 'godlygeek/tabular'
  37. Plug 'tristen/vim-sparkup'
  38. Plug 'sjl/gundo.vim'
  39. Plug 'katono/rogue.vim'
  40. " Text Objects {{{
  41. Plug 'kana/vim-textobj-user'
  42. Plug 'kana/vim-textobj-entire'
  43. Plug 'bkad/CamelCaseMotion'
  44. Plug 'vim-scripts/argtextobj.vim'
  45. " }}}
  46. " File Browser {{{
  47. Plug 'tpope/vim-vinegar'
  48. Plug 'kien/ctrlp.vim'
  49. " }}}
  50. " Code Browser {{{
  51. Plug 'tacahiroy/ctrlp-funky'
  52. if executable('ctags')
  53. Plug 'majutsushi/tagbar'
  54. if executable('phpctags')
  55. Plug 'vim-php/tagbar-phpctags.vim'
  56. endif
  57. endif
  58. " }}}
  59. " Completion and Snippets {{{
  60. Plug 'ajh17/VimCompletesMe'
  61. " }}}
  62. " Coding Language Support {{{
  63. Plug 'shawncplus/phpcomplete.vim'
  64. Plug 'tpope/vim-markdown'
  65. Plug 'tpope/vim-cucumber'
  66. Plug 'quentindecock/vim-cucumber-align-pipes'
  67. Plug 'kchmck/vim-coffee-script'
  68. Plug 'mintplant/vim-literate-coffeescript'
  69. Plug 'groenewege/vim-less'
  70. Plug 'elzr/vim-json'
  71. Plug 'vim-scripts/yaml.vim'
  72. Plug 'LnL7/vim-nix'
  73. " }}}
  74. " Discarded {{{
  75. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  76. "Plug 'deris/vim-shot-f' - interferes with macro
  77. "Plug 'scrooloose/nerdtree' - moved away from drawer-style browser to netrw.
  78. "
  79. "Plug 'ervandew/supertab' ------------\
  80. "Plug 'MarcWeber/vim-addon-mw-utils' -|
  81. "Plug 'tomtom/tlib_vim' --------------+ ancient and messy completion system.
  82. "Plug 'garbas/vim-snipmate' ----------|
  83. "Plug 'honza/vim-snippets' -----------/
  84. " }}}
  85. call plug#end()