If a ~/.gvimrc.local exists, then use it.

This commit is contained in:
Ryan Cavicchioni 2012-09-27 15:21:47 -05:00
parent c8a0f0c3f1
commit 2e3f7a42a3

View File

@ -11,3 +11,8 @@ endif
set guioptions=egt set guioptions=egt
colorscheme Mustang colorscheme Mustang
syntax on syntax on
" If it exists, include user's local vim config
if filereadable(expand("~/.gvimrc.local"))
source ~/.gvimrc.local
endif