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
" Run PlugInstall if there are missing plugins
autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
\| PlugInstall --sync | source $MYVIMRC
\| endif
" (disabled because it's kind of intense for weak devices)
"autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
"\| PlugInstall --sync | source $MYVIMRC
"\| endif
call plug#begin()