From fec0cd6f686beffba1ba0edbc6f075cdc313a88a Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 3 Oct 2012 09:29:39 -0700 Subject: [PATCH] Fix sourcing of .vimrc.local --- vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index cbf700b..09d2cd8 100644 --- a/vimrc +++ b/vimrc @@ -214,6 +214,6 @@ if has('autocmd') \ :call StripTrailingWhitespace() endif -if exists("$HOME/.vimrc.local") - source $HOME/.vimrc.local +if exists("~/.vimrc.local") + source ~/.vimrc.local endif