plugins.vim 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. silent! call plug#begin('~/dotfiles/vim/plugged')
  11. " General {{{
  12. Plug 'Raimondi/delimitMate'
  13. Plug 'adelarsq/vim-matchit'
  14. Plug 'dkprice/vim-easygrep'
  15. Plug 'haya14busa/vim-asterisk'
  16. Plug 'junegunn/vim-easy-align'
  17. Plug 'mbbill/undotree'
  18. Plug 'scrooloose/nerdcommenter'
  19. Plug 'terryma/vim-multiple-cursors'
  20. Plug 'tpope/vim-endwise'
  21. Plug 'tpope/vim-fugitive'
  22. Plug 'tpope/vim-repeat'
  23. Plug 'tpope/vim-unimpaired'
  24. Plug 'vim-scripts/visualrepeat'
  25. if v:version >= 704
  26. Plug 'vim-pandoc/vim-pandoc'
  27. endif
  28. " }}}
  29. " Visual {{{
  30. Plug 'AlessandroYorba/Alduin'
  31. Plug 'altercation/vim-colors-solarized'
  32. Plug 'cinaeco/airline-surarken'
  33. Plug 'cinaeco/neonwave.vim'
  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. if v:version >= 704 || (v:version == 703 && has('patch438'))
  55. Plug 'justinmk/vim-dirvish'
  56. else
  57. Plug 'tpope/vim-vinegar'
  58. endif
  59. " }}}
  60. " Code Browser {{{
  61. Plug 'tacahiroy/ctrlp-funky'
  62. if executable('ctags')
  63. Plug 'majutsushi/tagbar'
  64. if executable('phpctags')
  65. Plug 'vim-php/tagbar-phpctags.vim'
  66. endif
  67. endif
  68. " }}}
  69. " Completion and Snippets {{{
  70. if v:version >= 704 || (v:version == 703 && has('insert_expand') && has('menu'))
  71. Plug 'lifepillar/vim-mucomplete'
  72. else
  73. Plug 'ajh17/VimCompletesMe'
  74. endif
  75. " }}}
  76. " Coding Language Support {{{
  77. Plug 'LnL7/vim-nix'
  78. Plug 'elzr/vim-json'
  79. Plug 'pearofducks/ansible-vim'
  80. Plug 'ryym/vim-riot'
  81. Plug 'sheerun/vim-polyglot'
  82. Plug 'tobyS/pdv'
  83. Plug 'tobyS/vmustache'
  84. Plug 'vim-pandoc/vim-pandoc-syntax'
  85. Plug 'vim-scripts/yaml.vim'
  86. Plug 'vimperator/vimperator.vim'
  87. if v:version > 700 || (v:version == 700 && has('patch175'))
  88. Plug 'scrooloose/syntastic'
  89. endif
  90. " }}}
  91. " Language Support {{{
  92. Plug 'reedes/vim-wordy'
  93. " }}}
  94. " Discarded {{{
  95. "Plug 'Yggdroot/indentLine' - performance issues in larger files.
  96. "Plug 'deris/vim-shot-f' - interferes with macro
  97. "Plug 'haya14busa/incsearch.vim' - interferes with macros
  98. "Plug 'kshenoy/vim-signature' - nice, but mostly unused.
  99. "Plug 'scrooloose/nerdtree' - moved away from drawer-style browser to netrw.
  100. "Plug 'terryma/vim-expand-region' - cool, but often slower than text objects.
  101. "
  102. "Plug 'MarcWeber/vim-addon-mw-utils' -\
  103. "Plug 'ervandew/supertab' ------------|
  104. "Plug 'garbas/vim-snipmate' ----------+ ancient and messy completion system.
  105. "Plug 'honza/vim-snippets' -----------|
  106. "Plug 'tomtom/tlib_vim' --------------/
  107. "
  108. " Games!
  109. "Plug 'katono/rogue.vim' - Does not work with neovim.
  110. "Plug 'jmanoel7/vim-games'
  111. " }}}
  112. call plug#end()