Also disable gundo.vim if python support is missing, and add a note about the requirement on Lua for neocomplete.vim to the readme

This commit is contained in:
Kevin MacMartin 2017-02-12 19:14:14 -05:00
parent 705713597d
commit 55c93f0940
2 changed files with 3 additions and 1 deletions

View file

@ -8,7 +8,8 @@ A theme, config and collection of plugins for Vim.
* **Bash**: Required by the _update_ and _gentags_ scripts.
* **Coreutils**: Required by the _update_ script.
* **Git**: Required by the _update_ script and git-related plugins.
* **Python**: Required by the _gundo_ and _MatchTagAlways_ plugins.
* **Python**: Required by the _gundo.vim_ and _MatchTagAlways_ plugins.
* **Lua**: Required by the _neocomplete.vim_ plugin.
## Optional Requirements ##

1
vimrc
View file

@ -48,6 +48,7 @@
endif
if !has('python')
call add(pathogen_disabled, 'gundo.vim')
call add(pathogen_disabled, 'MatchTagAlways')
endif