前言:如果不使用vundle的話,進行外掛程式的安裝,配置和管理相對會麻煩,曾經沒使用vundle的時候我經常遇到無法安裝一些vim外掛程式。但使用vundle後你只要在檔案中新增一行你的外掛程式名再安裝就ok了。先簡單說一下vundle的使用,相信你會愛上它。原貼:
步驟:1.先安裝vim,安裝vim方法見vim 配置篇
2.建立資料夾~/.vim和檔案~/.vimrc
進入你的home目錄建立.vim資料夾和 .vimrc檔案
3.安裝vundle
git命令在centos下可以
yum install git
4.編輯如下內容到.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
', bundle
'tpope/vim-rails.git'"
vim-scripts repos
bundle 'l9'
bundle
'fuzzyfinder'"
non github repos
bundle '
git:'"
git repos on your local machine (ie. when working on your own plugin)
bundle '
file:///users/gmarik/path/to/plugin'"
...filetype plugin indent on
"required!""
brief help
":bundlelist - list configured bundles
":bundleinstall(!) - install(update) bundles
":bundlesearch(!) foo - search(or refresh cache first) for foo""
"see :h vundle for more details or wiki for faq
"note: comments after bundle command are not allowed..
下面針對上面的檔案做一些解釋
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
#如果你的外掛程式來自github,寫在下方,只要作者名/專案名就行了
bundle
'tpope/vim-fugitive
' #如這裡就安裝了vim-fugitive這個外掛程式
bundle
'lokaltog/vim-easymotion
'bundle
'rstacruz/sparkup
', bundle
'tpope/vim-rails.git'"
vim-scripts repos
#如果外掛程式來自 vim-scripts,你直接寫外掛程式名就行了
bundle 'l9
'bundle
'fuzzyfinder'"
non github repos
#如使用自己的git庫的外掛程式,像下面這樣做
bundle
'git:'"
git repos on your local machine (ie. when working on your own plugin)
bundle '
file:///users/gmarik/path/to/plugin'"
...filetype plugin indent on
"required!
#下面是 vundle的一些命令代會會用到""
brief help
":bundlelist - list configured bundles
":bundleinstall(!) - install(update) bundles
":bundlesearch(!) foo - search(or refresh cache first) for foo""
"see :h vundle for more details or wiki for faq
"note: comments after bundle command are not allowed..
#這裡可以寫一些你自己的配置
5.安裝你的外掛程式
(1)儲存退出當前的vim
(2)重新開啟vim,輸入命令:bundleinstall,然後就開始安裝你的外掛程式了。
6.如何移除外掛程式
(1)編輯.vimrc檔案移除的你要移除的外掛程式行
(2)儲存退出當前的vim
(3)重新開啟vim,輸入命令:bundleclean。
很方便的步驟,親測可用,再也不用擔心管理vim外掛程式了。
vundle管理VIM外掛程式
1.win7安裝git 2.安裝vundle 開始,執行git bash 3.設定 可選,windows可用,linux不可用,原因未知 5 配置.vimrc vi vim bundle vundle readme.md vimrc p 複製 7 填寫所需的外掛程式,高亮外掛程式 visualmar...
Vim外掛程式管理Vundle
vim外掛程式管理vundle haitongz 思考改變世界,技術讓世界更美好 部落格頻道 csdn.net 分類 vim 2012 01 14 07 20 146人閱讀收藏 舉報之前很少使用vim的外掛程式,最近打算把程式設計環境遷移到vim下,因此不能不考慮這些外掛程式。看了些資料,發現每個外...
VIM外掛程式管理 vundle
用了vundle管理vim各種外掛程式,就再也不用擔心外掛程式混亂的問題了。vundle專案 安裝和配置主頁上都有。vundle主要是利用git,來處理自動安裝,更新和解除安裝外掛程式,所以首先需要安裝git。通過vundle主頁給的.vimrc示例,可以知道安裝外掛程式有4種方式 bundle t...