plugins.vim 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. " auto-install vim-plug
  2. if empty(glob('~/.config/nvim/autoload/plug.vim'))
  3. silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
  4. \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  5. "autocmd VimEnter * PlugInstall
  6. autocmd VimEnter * PlugInstall | source $MYVIMRC
  7. endif
  8. call plug#begin('~/.config/nvim/autoload/plugged')
  9. " Change dates fast
  10. Plug 'tpope/vim-speeddating'
  11. " Convert binary, hex, etc..
  12. Plug 'glts/vim-radical'
  13. " Files
  14. Plug 'tpope/vim-eunuch'
  15. " Repeat stuff
  16. Plug 'tpope/vim-repeat'
  17. " Surround
  18. Plug 'tpope/vim-surround'
  19. " Better Comments
  20. Plug 'tpope/vim-commentary'
  21. " Plug 'preservim/nerdcommenter'
  22. " Have the file system follow you around
  23. Plug 'airblade/vim-rooter'
  24. " auto set indent settings
  25. Plug 'tpope/vim-sleuth'
  26. if exists('g:vscode')
  27. " Easy motion for VSCode
  28. Plug 'asvetliakov/vim-easymotion'
  29. else
  30. " Text Navigation
  31. Plug 'justinmk/vim-sneak'
  32. Plug 'unblevable/quick-scope'
  33. " Plug 'easymotion/vim-easymotion'
  34. " Add some color
  35. Plug 'norcalli/nvim-colorizer.lua'
  36. Plug 'junegunn/rainbow_parentheses.vim'
  37. " Better Syntax Support
  38. Plug 'sheerun/vim-polyglot'
  39. " Cool Icons
  40. Plug 'ryanoasis/vim-devicons'
  41. " Auto pairs for '(' '[' '{'
  42. Plug 'jiangmiao/auto-pairs'
  43. " Closetags
  44. Plug 'alvan/vim-closetag'
  45. " Themes
  46. Plug 'christianchiarulli/onedark.vim'
  47. " Plug 'kaicataldo/material.vim'
  48. " Plug 'NLKNguyen/papercolor-theme'
  49. " Plug 'tomasiser/vim-code-dark'
  50. " Intellisense
  51. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  52. " Status Line
  53. Plug 'vim-airline/vim-airline'
  54. " Plug 'vim-airline/vim-airline-themes'
  55. " Ranger
  56. " Plug 'francoiscabrol/ranger.vim'
  57. " Plug 'rbgrouleff/bclose.vim'
  58. Plug 'kevinhwang91/rnvimr', {'do': 'make sync'}
  59. " FZF
  60. Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
  61. Plug 'junegunn/fzf.vim'
  62. " Git
  63. " Plug 'mhinz/vim-signify'
  64. Plug 'airblade/vim-gitgutter'
  65. Plug 'tpope/vim-fugitive'
  66. Plug 'tpope/vim-rhubarb'
  67. Plug 'junegunn/gv.vim'
  68. " Terminal
  69. Plug 'voldikss/vim-floaterm'
  70. " Start Screen
  71. Plug 'mhinz/vim-startify'
  72. " Vista
  73. Plug 'liuchengxu/vista.vim'
  74. " See what keys do like in emacs
  75. Plug 'liuchengxu/vim-which-key'
  76. " Zen mode
  77. Plug 'junegunn/goyo.vim'
  78. " Making stuff
  79. Plug 'neomake/neomake'
  80. " Snippets TODO fix TAB hijack
  81. " Plug 'SirVer/ultisnips'
  82. " Better Comments
  83. " Plug 'jbgutierrez/vim-better-comments'
  84. " Echo doc
  85. " Plug 'Shougo/echodoc.vim'
  86. " Interactive code
  87. Plug 'metakirby5/codi.vim'
  88. Plug 'https://github.com/vimwiki/vimwiki.git'
  89. endif
  90. call plug#end()
  91. " Automatically install missing plugins on startup
  92. autocmd VimEnter *
  93. \ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
  94. \| PlugInstall --sync | q
  95. \| endif