Loading... !!! <h1>0x00什么是Vundle</h1> <a href="https://github.com/VundleVim/Vundle.vim" rel="nofollow noopener" target="_blank">Vundle</a>意即Vim Bundle,是一个vim插件管理器。Vundle能让你很简单地实现插件的安装、升级、搜索或者清除。它还能管理你的运行环境并且在标签方面提供帮助。在本教程中我们将展示如何安装和使用Vundle。 <h2>0x01安装Vundle</h2> 这里使用git命令来下载文件,没有安装git的请自行安装 <code>$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim</code> 编辑<code>.vimrc</code>文件,建议将原文件备份并另建一个新文件。 <pre>set nocompatible " 必需。 filetype off " 必须。 " 在这里设置你的运行时环境的路径。 set rtp+=~/.vim/bundle/Vundle.vim " 初始化vundle call vundle#begin() " 这一行应该永远放在开头。 Plugin 'gmarik/Vundle.vim' " 这个示范来自https://github.com/gmarik/Vundle.vim README Plugin 'tpope/vim-fugitive' " 取自http://vim-scripts.org/vim/scripts.html的插件 Plugin 'L9' " 该Git插件没有放在GitHub上。 Plugin 'git://git.wincent.com/command-t.git' "本地计算机上的Git仓库路径 (例如,当你在开发你自己的插件时) Plugin 'file:///home/gmarik/path/to/plugin' " vim脚本sparkup存放在这个名叫vim的仓库下的一个子目录中。 " 将这个路径正确地设置为runtimepath。 Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} " 避免与L9发生名字上的冲突 Plugin 'user/L9', {'name': 'newL9'} "所有的插件都应该在这一行之前。 call vundle#end() " 必需。 </pre> 上文解释: <ol> <li>要从github安装插件:<code>Plugin 'user/plugin'</code></li> <li>要从特定网址安装:<code>Plugin 'plugin_name'</code></li> <li>要从一个git库安装:<code>Plugin 'git://url.git'</code></li> <li>从本地安装:<code>Plugin 'file:///path'</code></li> </ol> 你同样可以定制其它东西,例如你的插件的运行时路径,当你自己在编写一个插件时,或者你只是想从其它目录——而不是~/.vim——中加载插件时,这样做就非常有用。 <code>Plugin 'rstacruz/sparkup', {'rtp' :'another_vim_path/'}</code> 如果你有同名的插件,你可以重命名你的插件,这样它们就不会发生冲突了。 <code>Plugin 'user/plugin', {'name': 'newPlugin'}</code> <h1>0x02Vundle相关命令</h1> 进入vim <h3>1.安装新插件</h3> 输入<code>:PluginInstall</code>安装配置文件中的插件 输入<code>:PluginInstall <插件名></code>通过插件名安装指定插件 <h3>2.清除插件</h3> 删除配置文件中插件再运行<code>:PluginClean</code>来删除 <h3>3.查看插件列表</h3> <code>:PluginList</code> <h1>END</h1> !!! Last modification:October 24, 2019 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 0 如果觉得我的文章对你有用,请随意赞赏