Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,26 @@ Ranger.vim
Installation
------------

Install it with your favorite plugin manager. Example with vim-plug:
Install it with your favorite plugin manager. Example with [vim-plug](https://github.com/junegunn/vim-plug):

Plug 'francoiscabrol/ranger.vim'
```viml
Plug 'francoiscabrol/ranger.vim'
```

If you use neovim, you have to add the dependency to the plugin bclose.vim:

Plug 'rbgrouleff/bclose.vim'
```viml
Plug 'rbgrouleff/bclose.vim'
```

Or if you prefer with [packer.nvim](https://github.com/wbthomason/packer.nvim):

```lua
use {
'francoiscabrol/ranger.vim',
requires = { 'rbgrouleff/bclose.vim' }
}
```

How to use it
-------------
Expand Down