init.vim: disable plugin auto-install

This commit is contained in:
dogeystamp 2023-02-14 19:16:14 -05:00
parent ee81307555
commit 0a5f565e37
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38

View File

@ -73,9 +73,11 @@ vnoremap <silent> K :'<,'>Evaluate<cr>
" Plugins " Plugins
" Run PlugInstall if there are missing plugins " Run PlugInstall if there are missing plugins
autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) " (disabled because it's kind of intense for weak devices)
\| PlugInstall --sync | source $MYVIMRC "autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
\| endif "\| PlugInstall --sync | source $MYVIMRC
"\| endif
call plug#begin() call plug#begin()