mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-10 05:04:13 +00:00
ch03: initialize vim-plug before loading plugins
Without this line, Vim gets errors.
This commit is contained in:
parent
24e078d629
commit
62ddd3ab0f
1 changed files with 1 additions and 0 deletions
|
@ -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…
Reference in a new issue