如何将病原体安装说明转换为vundle?

时间:2015-02-23 12:34:18

标签: vim pathogen vundle

我使用Vundle来管理我的插件。但是,某些插件仅包含手动安装或安装Pathogen的说明。例如:

  

安装详情

     

使用病原体安装:

  1. Place in pathogen directory
     

安装W / Out病原体:

  1. Place in .vim/indent directory, or anywhere in your runtime path.
  2. If placed outside of .vim/indent directory, 
         set g:js_indent = /location/to/javascript.vim in your
        .vimrc file. (This tells the html.vim file where to find
        the javascript indent file)
     

来源 http://www.vim.org/scripts/script.php?script_id=3081

有没有办法将Pathogen安装说明转换为与Vundle一起使用?

或者我是否应该同时安装Pathogen和Vundle并使用我想要安装的插件最好的支持?

1 个答案:

答案 0 :(得分:1)

病原体只是扩展您的'runtimepath'以在~/.vim/bundle/...下包含单独的插件目录(但不关心如何在那里安装插件)。之后,像Vundle这样的插件复制了这个想法并增加了从GitHub和其他位置自动更新的功能。

只要您拥有Vundle支持的安装位置,使用它应该是微不足道的。对于上面提到的插件,这应该是(使用vim-scripts.org GitHub镜像):

Plugin 'JavaScript-Indent'

摘要

您不需要插件中的明确指示即可通过插件管理器进行安装。只要支持安装位置,只需按照Vundle's quick start进行操作即可。 Vundle提供了Pathogen的超集;你永远不需要两者。