plugins.vim 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. " General {{{
  12. Plug 'Raimondi/delimitMate'
  13. Plug 'dkprice/vim-easygrep'
  14. Plug 'godlygeek/tabular'
  15. Plug 'haya14busa/vim-asterisk'
  16. Plug 'joonty/vdebug'
  17. Plug 'matchit.zip'
  18. Plug 'scrooloose/nerdcommenter'
  19. Plug 'sjl/gundo.vim'
  20. Plug 'terryma/vim-multiple-cursors'
  21. Plug 'tpope/vim-endwise'
  22. Plug 'tpope/vim-fugitive'
  23. Plug 'tpope/vim-repeat'
  24. " }}}
  25. " Visual {{{
  26. Plug 'altercation/vim-colors-solarized'
  27. Plug 'itchyny/lightline.vim'
  28. Plug 'kshenoy/vim-signature'
  29. Plug 'nathanaelkane/vim-indent-guides'
  30. " }}}
  31. " Text Objects {{{
  32. Plug 'bkad/CamelCaseMotion'
  33. Plug 'kana/vim-textobj-entire'
  34. Plug 'kana/vim-textobj-user'
  35. Plug 'tpope/vim-surround'
  36. Plug 'vim-scripts/argtextobj.vim'
  37. " }}}
  38. " File Browser {{{
  39. Plug 'kien/ctrlp.vim'
  40. Plug 'tpope/vim-vinegar'
  41. " }}}
  42. " Code Browser {{{
  43. Plug 'tacahiroy/ctrlp-funky'
  44. if executable('ctags')
  45. Plug 'majutsushi/tagbar'
  46. if executable('phpctags')
  47. Plug 'vim-php/tagbar-phpctags.vim'
  48. endif
  49. endif
  50. " }}}
  51. " Completion and Snippets {{{
  52. Plug 'ajh17/VimCompletesMe'
  53. " }}}
  54. " Coding Language Support {{{
  55. Plug 'LnL7/vim-nix'
  56. Plug 'elzr/vim-json'
  57. Plug 'scrooloose/syntastic'
  58. Plug 'sheerun/vim-polyglot'
  59. Plug 'vim-scripts/yaml.vim'
  60. " }}}
  61. " Games. Why not {{{
  62. Plug 'katono/rogue.vim'
  63. Plug 'jmanoel7/vim-games'
  64. " }}}
  65. " Discarded {{{
  66. "Plug 'deris/vim-shot-f' - interferes with macro
  67. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  68. "Plug 'scrooloose/nerdtree' - moved away from drawer-style browser to netrw.
  69. "Plug 'terryma/vim-expand-region' - cool, but often slower than text objects.
  70. "
  71. "Plug 'MarcWeber/vim-addon-mw-utils' -\
  72. "Plug 'ervandew/supertab' ------------|
  73. "Plug 'garbas/vim-snipmate' ----------+ ancient and messy completion system.
  74. "Plug 'honza/vim-snippets' -----------|
  75. "Plug 'tomtom/tlib_vim' --------------/
  76. " }}}
  77. call plug#end()