plugins.vim 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 '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 'vim-pandoc/vim-pandoc'
  25. Plug 'vim-pandoc/vim-pandoc-syntax'
  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. Plug 'kshenoy/vim-signature'
  36. Plug 'nathanaelkane/vim-indent-guides'
  37. Plug 'romainl/flattened'
  38. " }}}
  39. " Text Objects {{{
  40. " `,` to work with camel/snake case e.g. `ci,w`
  41. " `e` to work with whole files e.g. `=ae`
  42. " `s` to work with surrounds e.g. `cs{[`
  43. " `a` to work with arguments e.g. `cia`
  44. Plug 'bkad/CamelCaseMotion'
  45. Plug 'kana/vim-textobj-entire'
  46. Plug 'kana/vim-textobj-user'
  47. Plug 'tpope/vim-surround'
  48. Plug 'vim-scripts/argtextobj.vim'
  49. " }}}
  50. " File Browser {{{
  51. Plug 'ctrlpvim/ctrlp.vim'
  52. Plug 'tpope/vim-vinegar'
  53. " }}}
  54. " Code Browser {{{
  55. Plug 'tacahiroy/ctrlp-funky'
  56. if executable('ctags')
  57. Plug 'majutsushi/tagbar'
  58. if executable('phpctags')
  59. Plug 'vim-php/tagbar-phpctags.vim'
  60. endif
  61. endif
  62. " }}}
  63. " Completion and Snippets {{{
  64. Plug 'ajh17/VimCompletesMe'
  65. " }}}
  66. " Coding Language Support {{{
  67. Plug 'LnL7/vim-nix'
  68. Plug 'elzr/vim-json'
  69. Plug 'scrooloose/syntastic'
  70. Plug 'sheerun/vim-polyglot'
  71. Plug 'vim-scripts/yaml.vim'
  72. " }}}
  73. " Discarded {{{
  74. "Plug 'deris/vim-shot-f' - interferes with macro
  75. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  76. "Plug 'scrooloose/nerdtree' - moved away from drawer-style browser to netrw.
  77. "Plug 'terryma/vim-expand-region' - cool, but often slower than text objects.
  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. " Games!
  86. "Plug 'katono/rogue.vim' - Does not work with neovim.
  87. "Plug 'jmanoel7/vim-games'
  88. " }}}
  89. call plug#end()