mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-24 04:21:26 -05:00
Disable MatchTagAlways if python isn't available
This commit is contained in:
parent
9753ae514a
commit
1bd7ee194b
1 changed files with 5 additions and 0 deletions
5
init.vim
5
init.vim
|
@ -55,6 +55,11 @@ if !g:enablecompletion
|
||||||
call add(g:pathogen_disabled, "vim-snippets")
|
call add(g:pathogen_disabled, "vim-snippets")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
"don't load MatchTagAlways if python isn't available
|
||||||
|
if !has('python3')
|
||||||
|
call add(g:pathogen_disabled, 'MatchTagAlways')
|
||||||
|
endif
|
||||||
|
|
||||||
"use pathogen to load plugins that haven't been disabled
|
"use pathogen to load plugins that haven't been disabled
|
||||||
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue