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