ch03: initialize vim-plug before loading plugins

Without this line, Vim gets errors.
pull/133/head
Cyrus Yip 2 years ago committed by GitHub
parent 24e078d629
commit 62ddd3ab0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -232,6 +232,7 @@ After installing fzf and ripgrep, let's set up the fzf plugin. I am using [vim-p
Add these inside your `.vimrc` plugins. You need to use [fzf.vim](https://github.com/junegunn/fzf.vim) plugin (created by the same fzf author).
```
call plug#begin()
Plug 'junegunn/fzf.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
```

Loading…
Cancel
Save