Only load YouCompleteMe when :TermDebug isn't

This commit is contained in:
Kenneth Benzie 2020-04-02 12:14:13 +01:00
parent 8fac5fb74f
commit b40a9abb59

5
vimrc
View File

@ -206,3 +206,8 @@ let g:use_osc52 = trim(system('tmux show-options -g set-clipboard')) ==# 'set-cl
if g:use_osc52 if g:use_osc52
packadd oscyank.vim packadd oscyank.vim
endif endif
" Load YouComplteMe if termdebug plugin is not loaded.
if !exists(':Termdebug')
packadd YouCompleteMe
endif