Browse Source

Updated README.md to reflect nvim path differences

I've used vundle for years, and love it, thanks to everyone involved.

Just setting up a new dev environment and figured I may as well capture the neovim path differences here.

I'm not particularly savvy of the vim/neovim/plugin dev community, so hopefully this is a reasonable change/ isn't a faux pas of some kind.
pull/908/head
Michael James Kiernan 6 years ago
committed by GitHub
parent
commit
64fba6c554
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      README.md

+ 6
- 2
README.md View File

@ -48,9 +48,13 @@
Using non-POSIX shells, such as the popular Fish shell, requires additional setup. Please check the [FAQ].
2. Set up [Vundle]:
2. Set up [Vundle] for vim:
` git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim`
If you are using [neovim](https://github.com/neovim/neovim), it is similarly:
` git clone https://github.com/VundleVim/Vundle.vim.git ~/.config/nvim/bundle/Vundle.vim`
3. Configure Plugins:
@ -61,7 +65,7 @@
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/bundle/Vundle.vim " neovim variant: set rtp+=~/.config/nvim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')


Loading…
Cancel
Save