Skip to content

Commit

Permalink
Add support for .fork customizations
Browse files Browse the repository at this point in the history
  • Loading branch information
taxilian committed Sep 27, 2012
1 parent 6fe1be4 commit 85a6b2d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
source ~/.vimrc.bundles.local
endif
" }
" Use fork bundles if available {
if filereadable(expand("~/.vimrc.bundles.fork"))
source ~/.vimrc.bundles.fork
endif
" }
" Use bundles config {
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
Expand Down Expand Up @@ -537,6 +542,11 @@ function! NERDTreeInitAsNeeded()
endfunction
" }

" Use fork vimrc if available {
if filereadable(expand("~/.vimrc.fork"))
source ~/.vimrc.local
endif
" }
" Use local vimrc if available {
if filereadable(expand("~/.vimrc.local"))
source ~/.vimrc.local
Expand Down

0 comments on commit 85a6b2d

Please sign in to comment.