do not source local config if it does not exist

This commit is contained in:
James Dixon 2020-12-03 16:19:29 -05:00
parent 19a4adbab3
commit d150dae432

View File

@ -10,4 +10,7 @@ source ~/.vim/keybinds.vim
source ~/.vim/plugins.vim
source ~/.vim/colorschemes.vim
source ~/.vim/autocmds.vim
source ~/.config/vimrc
if filereadable(expand("~/.config/vimrc"))
source ~/.config/vimrc
endif