mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Don't load gutentags if ctags can't be found
This commit is contained in:
parent
0a52cbd8c0
commit
a6c7183478
1 changed files with 5 additions and 0 deletions
5
vimrc
5
vimrc
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue