Revert 00eccb7^...00eccb7 on faq

Junegunn Choi 2016-04-05 15:05:26 +09:00
parent 00eccb73fc
commit 3c55cc428f

4
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 exe '!curl -kfLo ' . expand('~/.vim/autoload/plug.vim')
\ . '--create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall | source $MYVIMRC
endif
```