mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
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:
parent
705713597d
commit
55c93f0940
2 changed files with 3 additions and 1 deletions
|
@ -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
1
vimrc
|
@ -48,6 +48,7 @@
|
|||
endif
|
||||
|
||||
if !has('python')
|
||||
call add(pathogen_disabled, 'gundo.vim')
|
||||
call add(pathogen_disabled, 'MatchTagAlways')
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue