首頁 > 軟體

使用Vundle管理Vim外掛

2020-06-16 17:29:15

幾種管理外掛


Vim 的外掛管理工具有蠻多,比如:

Vundle
vim-addon-manager
vpathogen.vim
vvundle
vvimana

Vim-addon-manager 和 vimana 的對比,參見Vim的外掛管理工具

我最會選擇了 Vundle,通過子目錄管理外掛,支援 Git 更新。 我其實不太喜歡子目錄,覺得目錄太多了看著煩,但是考慮到在沒有良好的 PKG 包描述檔案的前提下,分子目錄是一種簡單有效(粗暴)的方法。

Vundle 通過 git 來對外掛進行更新,有三種源可以新增:

  1. github 中 vim-scripts 的專案(這個賬號是為 Pathogen 建的,用來建立對 Vim.org 上指令碼的映象)

  2. github 某個 Vim 外掛專案

  3. 某個 git 源

以上也是我推薦的選擇外掛順序,我認為沒有必要去取最新的開發版外掛。

#Vundle 安裝

無二話,官方文件的Quick Start寫的很詳細 ,一句話:

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

.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..

>注意
>vundle會自動給你下載和管理外掛
>所以,你只要填上你所需要的外掛名稱即可。

對於不同型別的外掛,有不同的地址填寫方法。按上面的方法填寫完畢就可以了。
填寫完成,儲存退出後,開啟一個vim視窗。在命令模式下輸入
         :BundleList    //會顯示你vimrc裡面填寫的所有外掛名稱
         :BundleInstall  //會自動下載安裝或更新你的外掛。
 >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

###然後安裝外掛
在vim中輸入命令

:BundleInstall

![這裡寫圖片描述](http://img.blog.csdn.net/20150424195713475)

###設定powerline

在vimrc中新增設定資訊

“—————————————————————–

” 狀態列外掛powerline的設定

“—————————————————————–
set laststatus=2
set t_Co=256

let g:Powerline_symbols = ‘unicode’

set encoding=utf-8
“`
powerline安裝截圖

更多Vim相關教學見以下內容

Vim 8.0 釋出  http://www.linuxidc.com/Linux/2016-09/135178.htm

Vim學習指南 http://www.linuxidc.com/Linux/2013-08/89096.htm

Vim編輯器設定 http://www.linuxidc.com/Linux/2016-09/135460.htm

Vim編輯器使用 http://www.linuxidc.com/Linux/2016-09/135043.htm

快速學會 Vi編輯器 http://www.linuxidc.com/Linux/2013-08/88586.htm

強大的Vim 編輯器 http://www.linuxidc.com/Linux/2013-07/87544.htm

CentOS 6.2上搭建Vim開發環境 http://www.linuxidc.com/Linux/2013-07/87363.htm

把Vim打造成優秀的C++ IDE  http://www.linuxidc.com/Linux/2016-06/132262.htm

本文永久更新連結地址http://www.linuxidc.com/Linux/2016-11/136835.htm


IT145.com E-mail:sddin#qq.com