summaryrefslogtreecommitdiff
path: root/lib/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vimrc')
-rw-r--r--lib/vimrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/vimrc b/lib/vimrc
index 1400658..977320d 100644
--- a/lib/vimrc
+++ b/lib/vimrc
@@ -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