source "$MYVIMRC.local" if it exists

This commit is contained in:
Josh Holtrop 2012-12-20 15:12:58 -05:00
parent 1132f8b5c0
commit 2e08e30d40

7
vimrc
View File

@ -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