Update init.vim to support updated Vundle location
Before I noticed the rtp variable, the Vundle installation was a bit nebulous to me. TODO: Consider dropping support for vanilla altogether.
This commit is contained in:
parent
69516a41bc
commit
3dd58b01bd
2 changed files with 3 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@
|
||||||
**/*/.emacs.d/network-security.data
|
**/*/.emacs.d/network-security.data
|
||||||
**/*/.emacs.d/smex-items
|
**/*/.emacs.d/smex-items
|
||||||
nvim/.netrwhist
|
nvim/.netrwhist
|
||||||
|
Vundle.vim
|
||||||
|
|
|
@ -3,7 +3,9 @@ set nocompatible " be iMproved, required
|
||||||
filetype off " required
|
filetype off " required
|
||||||
|
|
||||||
" set the runtime path to include Vundle and initialize
|
" set the runtime path to include Vundle and initialize
|
||||||
|
" share Vundle between vim and neovim
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
|
set rtp+=~/.config/nvim/bundle/Vundle.vim
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
" alternatively, pass a path where Vundle should install plugins
|
" alternatively, pass a path where Vundle should install plugins
|
||||||
"call vundle#begin('~/some/path/here')
|
"call vundle#begin('~/some/path/here')
|
||||||
|
|
Loading…
Add table
Reference in a new issue