Skip to content

Commit

Permalink
Create Vundle as submodule
Browse files Browse the repository at this point in the history
When copying over the directory as submodule, installation is a bit more
than just the .gitmodules file. Need to explicitly add Vundle as a
submodule.

Issue: #10
  • Loading branch information
Newton committed Jul 23, 2014
1 parent abfa00d commit 0fd5dca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "vim/bundle/Vundle.vim"]
path = vim/bundle/Vundle.vim
[submodule "vim/plugins/Vundle.vim"]
path = vim/plugins/Vundle.vim
url = https://github.com/gmarik/Vundle.vim.git
7 changes: 4 additions & 3 deletions conf/runcom/vim
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ set nocompatible
filetype off

" Point to runtime path of vundle submodule (since it's not in .vim/autoload)
silent! set rtp+=${HOME}/.vim/bundle/Vundle.vim
silent! set rtp+=${HOME}/.vim/plugins/Vundle.vim
" Call vundle plugin management
silent! call vundle#rc()

silent! call vundle#begin()
source ${HOME}/.vim/settings/bundles.vim
call vundle#end()

source ${HOME}/.vim/settings/general.vim
source ${HOME}/.vim/settings/display.vim
source ${HOME}/.vim/settings/theme.vim
Expand Down
1 change: 1 addition & 0 deletions vim/plugins/Vundle.vim
Submodule Vundle.vim added at 0b28e3

0 comments on commit 0fd5dca

Please sign in to comment.