Fix sourcing of .vimrc.local

This commit is contained in:
Eryn Wells 2012-10-03 09:29:39 -07:00
parent 71b4dceb14
commit fec0cd6f68

4
vimrc
View file

@ -214,6 +214,6 @@ if has('autocmd')
\ :call <SID>StripTrailingWhitespace()
endif
if exists("$HOME/.vimrc.local")
source $HOME/.vimrc.local
if exists("~/.vimrc.local")
source ~/.vimrc.local
endif