plugins.vim 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. " Plugins {{{
  2. " vim: set sw=2 ts=2 sts=2 et tw=78 foldmarker={{{,}}} foldlevel=1 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 '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. Plug 'vim-pandoc/vim-pandoc'
  26. Plug 'vim-scripts/visualrepeat'
  27. " }}}
  28. " Visual {{{
  29. Plug 'Sclarki/airline-surarken'
  30. Plug 'Sclarki/neonwave.vim'
  31. Plug 'altercation/vim-colors-solarized'
  32. Plug 'bling/vim-airline'
  33. Plug 'junegunn/goyo.vim'
  34. Plug 'junegunn/limelight.vim'
  35. " }}}
  36. " Text Objects {{{
  37. " `,` to work with camel/snake case e.g. `ci,w`
  38. " `e` to work with whole files e.g. `=ae`
  39. " `s` to work with surrounds e.g. `cs{[`
  40. " `a` to work with arguments e.g. `cia`
  41. Plug 'bkad/CamelCaseMotion'
  42. Plug 'kana/vim-textobj-entire'
  43. Plug 'kana/vim-textobj-user'
  44. Plug 'tpope/vim-surround'
  45. Plug 'vim-scripts/argtextobj.vim'
  46. " }}}
  47. " File Browser {{{
  48. Plug 'ctrlpvim/ctrlp.vim'
  49. Plug 'tpope/vim-vinegar'
  50. " }}}
  51. " Code Browser {{{
  52. Plug 'tacahiroy/ctrlp-funky'
  53. if executable('ctags')
  54. Plug 'majutsushi/tagbar'
  55. if executable('phpctags')
  56. Plug 'vim-php/tagbar-phpctags.vim'
  57. endif
  58. endif
  59. " }}}
  60. " Completion and Snippets {{{
  61. Plug 'ajh17/VimCompletesMe'
  62. " }}}
  63. " Coding Language Support {{{
  64. Plug 'LnL7/vim-nix'
  65. Plug 'elzr/vim-json'
  66. Plug 'scrooloose/syntastic'
  67. Plug 'sheerun/vim-polyglot'
  68. Plug 'tobyS/pdv'
  69. Plug 'tobyS/vmustache'
  70. Plug 'vim-pandoc/vim-pandoc-syntax'
  71. Plug 'vim-scripts/yaml.vim'
  72. Plug 'nicklasos/vim-jsx-riot'
  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. "Plug 'terryma/vim-expand-region' - cool, but often slower than text objects.
  79. "Plug 'kshenoy/vim-signature' - nice, but mostly unused.
  80. "Plug 'Yggdroot/indentLine' - performance issues in larger files.
  81. "
  82. "Plug 'MarcWeber/vim-addon-mw-utils' -\
  83. "Plug 'ervandew/supertab' ------------|
  84. "Plug 'garbas/vim-snipmate' ----------+ ancient and messy completion system.
  85. "Plug 'honza/vim-snippets' -----------|
  86. "Plug 'tomtom/tlib_vim' --------------/
  87. "
  88. " Games!
  89. "Plug 'katono/rogue.vim' - Does not work with neovim.
  90. "Plug 'jmanoel7/vim-games'
  91. " }}}
  92. call plug#end()