Skip to content

Commit

Permalink
Merge pull request iggredible#133 from CyrusYip/patch-1
Browse files Browse the repository at this point in the history
ch03: initialize vim-plug before loading plugins
  • Loading branch information
iggredible authored Jan 11, 2022
2 parents 24e078d + 86c241f commit f35e3b5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ch03_searching_files.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,10 @@ 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() } }
call plug#end()
```

After adding these lines, you will need to open `vim` and run `:PlugInstall`. It will install all plugins that are defined in your `vimrc` file and are not installed. In our case, it will install `fzf.vim` and `fzf`.
Expand Down

0 comments on commit f35e3b5

Please sign in to comment.