Procházet zdrojové kódy

Speed up setup by removing vimplug upgrade and games

Vim Plug checking takes a while to happen, and vim games, while cool, do
not work in all contexts (so might as well not have them).
Weiyi Lou před 10 roky
rodič
revize
e245582188
2 změnil soubory, kde provedl 5 přidání a 6 odebrání
  1. 1 1
      setup.sh
  2. 4 5
      vim/plugins.vim

+ 1 - 1
setup.sh

@@ -27,7 +27,7 @@ linkup() {
 # Run vim-plug's install process.
 # Vim starts with just a registry of plugins and the `nocompatible` flag.
 install_vim_plugins() {
-  vim -u ~/dotfiles/vim/plugins.vim -N +PlugUpgrade +PlugUpdate! +PlugClean! +qall!
+  vim -u ~/dotfiles/vim/plugins.vim -N +PlugUpdate! +PlugClean! +qall!
 }
 
 # }}}

+ 4 - 5
vim/plugins.vim

@@ -78,11 +78,6 @@ Plug 'sheerun/vim-polyglot'
 Plug 'vim-scripts/yaml.vim'
 " }}}
 
-" Games. Why not {{{
-Plug 'katono/rogue.vim'
-Plug 'jmanoel7/vim-games'
-" }}}
-
 " Discarded {{{
 "Plug 'deris/vim-shot-f' - interferes with macro
 "Plug 'haya14busa/incsearch.vim' - interferes with macros
@@ -94,6 +89,10 @@ Plug 'jmanoel7/vim-games'
 "Plug 'garbas/vim-snipmate' ----------+ ancient and messy completion system.
 "Plug 'honza/vim-snippets' -----------|
 "Plug 'tomtom/tlib_vim' --------------/
+"
+" Games!
+"Plug 'katono/rogue.vim' - Does not work with neovim.
+"Plug 'jmanoel7/vim-games'
 " }}}
 
 call plug#end()