Update .vimrc

add support to custom plugins in .vimrc.local
This commit is contained in:
titubery 2019-10-25 00:45:01 +08:00 committed by GitHub
parent 07cab95c77
commit 10bfda2757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
.vimrc
View File

@ -154,7 +154,7 @@ Plug 'terryma/vim-smooth-scroll'
Plug 'rhysd/clever-f.vim'
Plug 'vim-scripts/indentpython.vim'
call plug#end()
" load vim default plugin
runtime macros/matchit.vim
@ -355,3 +355,4 @@ let g:indentLine_enabled = 0
if filereadable(expand($HOME . '/.vimrc.local'))
source $HOME/.vimrc.local
endif
call plug#end()