Skip to content

Commit

Permalink
Merge pull request #605 from krblt/default-bundles
Browse files Browse the repository at this point in the history
Introduce .vimrc.bundles.default
  • Loading branch information
spf13 committed Jun 4, 2014
2 parents 488a074 + 1f5d4da commit 9028b86
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .vimrc.bundles.default
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
" Default Bundles {
" Use before config if available {
if filereadable(expand("~/.vimrc.before.fork"))
source ~/.vimrc.before.fork
endif
" }

" Use bundles config {
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
endif
" }
" }
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ setup_vundle() {
export SHELL='/bin/sh'

vim \
-u "$HOME/.vimrc.bundles" \
-u "$app_dir/.vimrc.bundles.default" \
"+set nomore" \
"+BundleInstall!" \
"+BundleClean" \
Expand Down

0 comments on commit 9028b86

Please sign in to comment.