Include .vimrc-local if it exists

This commit is contained in:
2022-01-05 09:10:37 +08:00
parent b9807c2232
commit 58b917efb1

View File

@@ -22,3 +22,7 @@ Plugin 'tpope/vim-sleuth'
call vundle#end() call vundle#end()
filetype plugin indent on filetype plugin indent on
if filereadable(".vimrc-local")
source .vimrc-local
endif