Added checl for .vimrc.local

This commit is contained in:
Nick Nisi
2012-05-26 14:01:59 -05:00
parent a292ae8e38
commit fb55bd7128

View File

@@ -332,3 +332,12 @@ let g:ctrlp_custom_ignore = '\.git$|\.hg$|\.svn$'
" Kwbd
nmap <leader>qq :Kwbd<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Local vimrc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" load a custom, per machine vimrc if available
if filereadable(glob("~/.vimrc.local"))
source ~/.vimrc.local
endif