From 10bfda27570a9b6a7927c820accb75700c4bd6fe Mon Sep 17 00:00:00 2001 From: titubery <17917040+Titubery@users.noreply.github.com> Date: Fri, 25 Oct 2019 00:45:01 +0800 Subject: [PATCH] Update .vimrc add support to custom plugins in .vimrc.local --- .vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index b3f9018..1838075 100644 --- a/.vimrc +++ b/.vimrc @@ -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()