spf13-vim/.vimrc.bundles.default
Michael Kasch 790c57c425 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.
2015-01-02 14:53:21 +01:00

15 lines
310 B
Plaintext

" Default Bundles {
" Use before config if available {
if filereadable(expand("~/.vimrc.before"))
source ~/.vimrc.before
endif
" }
" Use bundles config {
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
endif
" }
" }