diff --git a/faq.md b/faq.md index 6218e9d..02c487c 100644 --- a/faq.md +++ b/faq.md @@ -6,8 +6,8 @@ Place the following code in your .vimrc before `plug#begin()` call ```vim if empty(glob('~/.vim/autoload/plug.vim')) - silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs - \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + silent exe '!curl -kfLo ' . expand('~/.vim/autoload/plug.vim') + \ . '--create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' autocmd VimEnter * PlugInstall | source $MYVIMRC endif ```