plugins.vim 2.4 KB

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