diff options
-rw-r--r-- | lib/vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -272,3 +272,8 @@ call s:hi('diffLine', s:cgray) call s:hi('diffSubname', s:cgray) call s:hi('diffAdded', s:white, s:green) call s:hi('diffRemoved', s:white, s:red) + +" load ~/.vimrc.local last for local overrides +if filereadable(~/.vimrc.local) + source ~/.vimrc.local +endif |