vim插件管理之Vundle

Vim是一个相似于Vi的著名的功能强大、高度可定制的文本编辑器,在Vi的基础上改进和增长了不少特性。正是因为其可定制的特性,html

许许多多的Vim插件便诞生了。管理这些插件又成为咱们最为头疼的问题,最近无心中发现了Vundle----其特点在于使用git来管理插件,git

更新方便,支持搜索,一键更新,今后只须要一个vimrc走天下。那么下面咱们就来看看如何安装和配置Vundle:github

       1.在用户根目录下建立.vim/bundle目录(若是在用户根目录没有的这些目录的话)vim

   2.将vundle拷贝到./vim/bundle中去:git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vimapp

   3.配置vundle:在用户根目录下建立.vimrc文件(若是没有的话),并将如下代码拷贝到该文件中:编辑器

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin '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 L9
Plugin 'user/L9', {'name': 'newL9'}

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help(简介)
" :PluginList       - lists configured plugins(列出已经配置的插件)
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate(安装插件;添加“!”表示升级文件或者仅仅使用PluginUpdate)
" :PluginSearch foo - searches for foo; append `!` to refresh local cache(查找相关插件)
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal(清理相关插件)
"
" see :h vundle for more details or wiki for FAQ(使用":h"查看帮助)
" Put your non-Plugin stuff after this line

   4.安装插件:运行vim,以后运行":PluginInstall"命令便可安装.vimrc文件中配置的插件网站

详情请前往Vundle官方网站查看ui

相关文章
相关标签/搜索