From 55c93f094040590ba52d75565c6847b7d68a46e9 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sun, 12 Feb 2017 19:14:14 -0500 Subject: [PATCH] Also disable gundo.vim if python support is missing, and add a note about the requirement on Lua for neocomplete.vim to the readme --- README.md | 3 ++- vimrc | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56fc026..8d0ec93 100644 --- a/README.md +++ b/README.md @@ -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 ## diff --git a/vimrc b/vimrc index 6f783d8..f4b940a 100644 --- a/vimrc +++ b/vimrc @@ -48,6 +48,7 @@ endif if !has('python') + call add(pathogen_disabled, 'gundo.vim') call add(pathogen_disabled, 'MatchTagAlways') endif