From 2e08e30d404811cb6ed88ae968fde999101d51c0 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 20 Dec 2012 15:12:58 -0500 Subject: [PATCH] source "$MYVIMRC.local" if it exists --- vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vimrc b/vimrc index a73dea0..bbc35aa 100644 --- a/vimrc +++ b/vimrc @@ -160,3 +160,10 @@ function! FindSymbolInSources(sources, ...) echo "Found " . n_matches . " matches" endif endfunction + +"============================================================================== +" Machine-local Settings +"============================================================================== +if filereadable($MYVIMRC . ".local") + exec 'source ' . $MYVIMRC . ".local" +endif