几种管理插件
Vim 的插件管理工具有蛮多,比如:
Vundle
vim-addon-manager
vpathogen.vim
vvundle
vvimana
一位同学自己写的
- 1
- 2
- 3
- 4
- 5
- 6
- 1
- 2
- 3
- 4
- 5
- 6
Vim-addon-manager 和 vimana 的对比,参见Vim的插件管理工具
我最会选择了 Vundle,通过子目录管理插件,支持 Git 更新。 我其实不太喜欢子目录,觉得目录太多了看着烦,但是考虑到在没有良好的 PKG 包描述文件的前提下,分子目录是一种简单有效(粗暴)的方法。
Vundle 通过 git 来对插件进行更新,有三种源可以添加:
(1)github 中 vim-scripts 的项目(这个账号是为 Pathogen 建的,用来建立对 Vim.org 上脚本的镜像)
(2)github 某个 Vim 插件项目
(3)某个 git 源
- 1
- 2
- 3
- 4
- 5
- 1
- 2
- 3
- 4
- 5
以上也是我推荐的选择插件顺序,我认为没有必要去取最新的开发版插件。
Vundle 安装
无二话,官方文档的Quick Start写的很详细 ,一句话:
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
- 1
- 1
在.vimrc中添加
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
" ...
filetype plugin indent on " required!
"
" Brief help -- 此处后面都是vundle的使用命令
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
注意
vundle会自动给你下载和管理插件
所以,你只要填上你所需要的插件名称即可。
对于不同类型的插件,有不同的地址填写方法。按上面的方法填写完毕就可以了。
填写完成,保存退出后,打开一个vim窗口。在命令模式下输入
:BundleList //会显示你vimrc里面填写的所有插件名称
:BundleInstall //会自动下载安装或更新你的插件。
- 1
- 2
- 1
- 2
PS: https://github.com/vim-scripts 和 http://vim-scripts.org/vim/scripts.html 这两个网站上都是vim-scripts的插件,即你只需在vimrc中添加你想要的插件名称即可。
插件安装示例
如果想要安装插件,可以去GIT,也可一去vim-scripts去查找
自己需要的插件,然后放到配置文件去。
安装状态栏插件powerline
下面说说如何让VIM变的华丽一点,以往都是使用statusline.vim插件来使用状态栏,现在有了一个华丽的替代品,power-line.先看一张图吧~
首先添加poweline,
在vimrc中添加这样一行
" 状态栏插件powerline
Bundle 'https://github.com/Lokaltog/vim-powerline.git'
filetype plugin indent on
- 1
- 2
- 3
- 1
- 2
- 3
然后安装插件
在vim中输入命令
:BundleInstall
- 1
- 1
配置powerline
在vimrc中添加配置信息
"-----------------------------------------------------------------
"
" 状态栏插件powerline的配置
"
"-----------------------------------------------------------------
set laststatus=2
set t_Co=256
let g:Powerline_symbols = 'unicode'
set encoding=utf-8
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
powerline安装截图
转载:http://blog.csdn.net/gatieme/article/details/45250451
时间: 2024-10-15 00:39:10