Browse Source

Merge 64fba6c554 into b255382d62

pull/908/merge
Michael James Kiernan 6 years ago
committed by GitHub
parent
commit
d4dcbd9be1
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