From 7a8551a376bb9a2fa76d3cc8925136a3858fc82f Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 20 Nov 2018 12:36:21 +0100 Subject: [PATCH] Source .vimrc.local if available --- vim/vimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 1a73ae6..3a925f1 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,4 +1,6 @@ -source ~/.vimrc.local +if filereadable("~/.vimrc.local") + source ~/.vimrc.local +endif " vim-plug installer if empty(glob('~/.vim/autoload/plug.vim'))