From d30c6cc2547034c2b534b8f19b0c570c380be0fd Mon Sep 17 00:00:00 2001 From: Cougar Date: Thu, 30 Apr 2015 11:43:18 +0300 Subject: [PATCH] Read $HOME/.vimrc.local if it exists --- vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vimrc b/vimrc index 676f0a861..8af4efcbc 100644 --- a/vimrc +++ b/vimrc @@ -306,3 +306,6 @@ autocmd BufReadPost fugitive://* \ nnoremap .. :edit %:h | \ endif +if filereadable(expand("$HOME/.vimrc.local")) + source $HOME/.vimrc.local +endif