plugins.vim 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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('~/dotfiles/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 'junegunn/goyo.vim'
  35. Plug 'junegunn/limelight.vim'
  36. Plug 'vim-airline/vim-airline'
  37. Plug 'vim-airline/vim-airline-themes'
  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 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' }
  53. Plug 'junegunn/fzf.vim'
  54. Plug 'tpope/vim-vinegar'
  55. " }}}
  56. " Code Browser {{{
  57. Plug 'tacahiroy/ctrlp-funky'
  58. if executable('ctags')
  59. Plug 'majutsushi/tagbar'
  60. if executable('phpctags')
  61. Plug 'vim-php/tagbar-phpctags.vim'
  62. endif
  63. endif
  64. " }}}
  65. " Completion and Snippets {{{
  66. Plug 'ajh17/VimCompletesMe'
  67. " }}}
  68. " Coding Language Support {{{
  69. Plug 'LnL7/vim-nix'
  70. Plug 'elzr/vim-json'
  71. Plug 'nicklasos/vim-jsx-riot'
  72. Plug 'pearofducks/ansible-vim'
  73. Plug 'scrooloose/syntastic'
  74. Plug 'sheerun/vim-polyglot'
  75. Plug 'tobyS/pdv'
  76. Plug 'tobyS/vmustache'
  77. Plug 'vim-pandoc/vim-pandoc-syntax'
  78. Plug 'vim-scripts/yaml.vim'
  79. " }}}
  80. " Discarded {{{
  81. "Plug 'deris/vim-shot-f' - interferes with macro
  82. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  83. "Plug 'scrooloose/nerdtree' - moved away from drawer-style browser to netrw.
  84. "Plug 'terryma/vim-expand-region' - cool, but often slower than text objects.
  85. "Plug 'kshenoy/vim-signature' - nice, but mostly unused.
  86. "Plug 'Yggdroot/indentLine' - performance issues in larger files.
  87. "
  88. "Plug 'MarcWeber/vim-addon-mw-utils' -\
  89. "Plug 'ervandew/supertab' ------------|
  90. "Plug 'garbas/vim-snipmate' ----------+ ancient and messy completion system.
  91. "Plug 'honza/vim-snippets' -----------|
  92. "Plug 'tomtom/tlib_vim' --------------/
  93. "
  94. " Games!
  95. "Plug 'katono/rogue.vim' - Does not work with neovim.
  96. "Plug 'jmanoel7/vim-games'
  97. " }}}
  98. call plug#end()