Browse Source

Added conditional for nvim, which loads scripts from /Users/lee/.nvim/bundle.

pull/627/head
Lee Savide 11 years ago
parent
commit
0fc3bac28d
No known key found for this signature in database GPG Key ID: 3989D6389ABFBB31
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      autoload/vundle.vim

+ 2
- 0
autoload/vundle.vim View File

@ -83,6 +83,8 @@ endf
" Initialize some global variables used by Vundle.
if has('win32') || has('win64')
let vundle#bundle_dir = expand('$VIM/vimfiles/bundle', 1)
elseif has('nvim')
let vundle#bundle_dir = expand('$HOME/.nvim/bundle', 1)
else
let vundle#bundle_dir = expand('$HOME/.vim/bundle', 1)
endif


Loading…
Cancel
Save