diff --git a/.vim/vimrc b/.vim/vimrc index 4e800e8..f9c12a5 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -56,6 +56,11 @@ let g:lightline = {'component':{'lineinfo':'%3l:%-2v'}} let g:polyglot_disabled = ["autoindent", "sensible"] let g:snipMate = {'snippet_version': 1} " +" Local +if filereadable("~/.vim/vimrc-preplug.local") + source ~/.vim/vimrc-preplug.local +endif +" call plug#begin('~/.vim/plugged') Plug 'DataWraith/auto_mkdir' Plug 'MarcWeber/vim-addon-mw-utils' @@ -114,6 +119,6 @@ autocmd BufReadPost COMMIT_EDITMSG exe "normal! gg" map :NERDTreeToggle " " Local -if filereadable("~/.vim/vimrc.local") - source ~/.vim/vimrc.local +if filereadable("~/.vim/vimrc-post.local") + source ~/.vim/vimrc-post.local endif