Source a local .vimrc if it exists

This commit is contained in:
Eryn Wells 2012-01-04 08:55:00 -08:00
parent 273cb3758a
commit 5ce9502982

4
vimrc
View file

@ -210,3 +210,7 @@ if has('autocmd')
" Clean whitespace before saving
autocmd BufWritePre *.py,*.c,*.html :call <SID>StripTrailingWhitespace()
endif
if exists("~/.vimrc-local")
source ~/.vimrc-local
endif