Fixing bootstrap being destructive as .vimrc.bundles.default only souces

.vimrc.before.fork and not .vimrc.before or .vimrc.before.local .
now sourcing .vimrc.before, which then sources the other two by default.
This commit is contained in:
Michael Kasch 2015-01-02 14:49:08 +01:00 committed by Michael Kasch
parent 1970f96d64
commit 790c57c425

View File

@ -1,7 +1,8 @@
" Default Bundles { " Default Bundles {
" Use before config if available { " Use before config if available {
if filereadable(expand("~/.vimrc.before.fork")) if filereadable(expand("~/.vimrc.before"))
source ~/.vimrc.before.fork source ~/.vimrc.before
endif endif
" } " }