首页 > 代码库 > Vundle使用手册
Vundle使用手册
一、简介
Vundle是Vim bundle简称,是一款优秀的Vim插件管理器。
可以通过.vimrc进行配置
安装配置插件
升级配置插件
按名称搜索Vim插件
清理未使用的插件
二、安装
1、安装环境:ubuntu 14.04.1 LTS 32Bit
需已安装git包,
2、
$ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
3、配置插件
官方模板
set nocompatible " 关闭一致性(必需)filetype off " (必需)" 设置Vundle路径并初始化set rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()" 使Vundle管理Vundle(必需)Plugin ‘gmarik/Vundle.vim‘"以下是一些例程"要保证插件在Vundel#begin/end之间" plugin on GitHub repoPlugin ‘tpope/vim-fugitive‘" plugin from http://vim-scripts.org/vim/scripts.htmlPlugin ‘L9‘" Git plugin not hosted on GitHubPlugin ‘git://git.wincent.com/command-t.git‘" git repos on your local machine (i.e. when working on your own plugin)Plugin ‘file:///home/gmarik/path/to/plugin‘" The sparkup vim script is in a subdirectory of this repo called vim." Pass the path to set the runtimepath properly.Plugin ‘rstacruz/sparkup‘, {‘rtp‘: ‘vim/‘}" Avoid a name conflict with L9Plugin ‘user/L9‘, {‘name‘: ‘newL9‘}call vundle#end() " (必需)filetype plugin indent on " (必需)
4、安装插件
运行vim,输入命令 :PluginInstall
Vundle使用手册
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。