Don't load gutentags if ctags can't be found

This commit is contained in:
Kevin MacMartin 2022-04-23 23:44:37 -04:00
parent 0a52cbd8c0
commit a6c7183478

5
vimrc
View file

@ -72,6 +72,11 @@
let g:python_msgpack = 0
endif
"don't load vim-gutentags if ctags can't be found
if !executable('ctags')
call add(pathogen_disabled, 'vim-gutentags')
endif
if !g:python_neovim || !g:python_msgpack
"don't load deoplete if either of its python dependencies are missing
call add(pathogen_disabled, 'deoplete.nvim')