From 3dd58b01bd420ae7a227bf4af339e9ee4cb69371 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 7 Mar 2019 14:03:54 +0000 Subject: [PATCH] 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. --- .gitignore | 1 + configs/shared/misc/.config/nvim/init.vim | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 977cacfdd..361303b90 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 0fe8082e9..4da8a5537 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')