about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-03-07T14·03+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-03-07T14·03+0000
commit3dd58b01bd420ae7a227bf4af339e9ee4cb69371 (patch)
tree29a5e42037161673f2491142c5d08c07110c3951
parent69516a41bc9a54b32521e8da5bdc78e01b09c7ae (diff)
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.
-rw-r--r--.gitignore1
-rw-r--r--configs/shared/misc/.config/nvim/init.vim2
2 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 977cacfdda8c..361303b90189 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@
 **/*/.emacs.d/network-security.data
 **/*/.emacs.d/smex-items
 nvim/.netrwhist
+Vundle.vim
diff --git a/configs/shared/misc/.config/nvim/init.vim b/configs/shared/misc/.config/nvim/init.vim
index 0fe8082e9817..4da8a5537076 100644
--- a/configs/shared/misc/.config/nvim/init.vim
+++ b/configs/shared/misc/.config/nvim/init.vim
@@ -3,7 +3,9 @@ set nocompatible              " be iMproved, required
 filetype off                  " required
 
 " set the runtime path to include Vundle and initialize
+" share Vundle between vim and neovim
 set rtp+=~/.vim/bundle/Vundle.vim
+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')