about summary refs log tree commit diff
diff options
context:
space:
mode:
-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')