plugins.vim 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. " vim: set sw=2 ts=2 sts=2 et tw=80 fmr={{{,}}} fdl=0 fdm=marker:
  2. "
  3. " The Plugin List
  4. "
  5. " This file is used from 2 places:
  6. "
  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 'haya14busa/vim-asterisk'
  15. Plug 'joonty/vdebug'
  16. Plug 'junegunn/vim-easy-align'
  17. Plug 'matchit.zip'
  18. Plug 'mbbill/undotree'
  19. Plug 'scrooloose/nerdcommenter'
  20. Plug 'terryma/vim-multiple-cursors'
  21. Plug 'tpope/vim-endwise'
  22. Plug 'tpope/vim-fugitive'
  23. Plug 'tpope/vim-repeat'
  24. Plug 'tpope/vim-unimpaired'
  25. if v:version >= 704
  26. Plug 'vim-pandoc/vim-pandoc'
  27. endif
  28. Plug 'vim-scripts/visualrepeat'
  29. " }}}
  30. " Visual {{{
  31. Plug 'Sclarki/airline-surarken'
  32. Plug 'Sclarki/neonwave.vim'
  33. Plug 'altercation/vim-colors-solarized'
  34. Plug 'bling/vim-airline'
  35. Plug 'junegunn/goyo.vim'
  36. Plug 'junegunn/limelight.vim'
  37. " }}}
  38. " Text Objects {{{
  39. " `,` to work with camel/snake case e.g. `ci,w`
  40. " `e` to work with whole files e.g. `=ae`
  41. " `s` to work with surrounds e.g. `cs{[`
  42. " `a` to work with arguments e.g. `cia`
  43. Plug 'bkad/CamelCaseMotion'
  44. Plug 'kana/vim-textobj-entire'
  45. Plug 'kana/vim-textobj-user'
  46. Plug 'tpope/vim-surround'
  47. Plug 'vim-scripts/argtextobj.vim'
  48. " }}}
  49. " File Browser {{{
  50. Plug 'ctrlpvim/ctrlp.vim'
  51. Plug 'tpope/vim-vinegar'
  52. " }}}
  53. " Code Browser {{{
  54. Plug 'tacahiroy/ctrlp-funky'
  55. if executable('ctags')
  56. Plug 'majutsushi/tagbar'
  57. if executable('phpctags')
  58. Plug 'vim-php/tagbar-phpctags.vim'
  59. endif
  60. endif
  61. " }}}
  62. " Completion and Snippets {{{
  63. Plug 'ajh17/VimCompletesMe'
  64. " }}}
  65. " Coding Language Support {{{
  66. Plug 'LnL7/vim-nix'
  67. Plug 'elzr/vim-json'
  68. Plug 'scrooloose/syntastic'
  69. Plug 'sheerun/vim-polyglot'
  70. Plug 'tobyS/pdv'
  71. Plug 'tobyS/vmustache'
  72. Plug 'vim-pandoc/vim-pandoc-syntax'
  73. Plug 'vim-scripts/yaml.vim'
  74. Plug 'nicklasos/vim-jsx-riot'
  75. " }}}
  76. " Discarded {{{
  77. "Plug 'deris/vim-shot-f' - interferes with macro
  78. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  79. "Plug 'scrooloose/nerdtree' - moved away from drawer-style browser to netrw.
  80. "Plug 'terryma/vim-expand-region' - cool, but often slower than text objects.
  81. "Plug 'kshenoy/vim-signature' - nice, but mostly unused.
  82. "Plug 'Yggdroot/indentLine' - performance issues in larger files.
  83. "
  84. "Plug 'MarcWeber/vim-addon-mw-utils' -\
  85. "Plug 'ervandew/supertab' ------------|
  86. "Plug 'garbas/vim-snipmate' ----------+ ancient and messy completion system.
  87. "Plug 'honza/vim-snippets' -----------|
  88. "Plug 'tomtom/tlib_vim' --------------/
  89. "
  90. " Games!
  91. "Plug 'katono/rogue.vim' - Does not work with neovim.
  92. "Plug 'jmanoel7/vim-games'
  93. " }}}
  94. call plug#end()