2016/01/30

[Vim] Vim 外掛套件管理 Vundle.vim 安裝方法

用 GUI 的編輯器用習慣,因為常有一些套件可以增加工作效率

而 Vim 這個古老的編輯器也是經常使用,怎麼都沒想過要來加外掛呢?

最近看到 Vim 的加強功能,決定來把 Mac 上的 Vim 改裝一下,首先要裝套件管理程式 Vundle 先裝好~


Vundle 安裝 (路徑請裝至 ~/.vim/bundle/ 下)

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



修改 ~/.vimrc 檔案,設定 vundle 套件 (可參考 vundle 預設設定做修改)


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()

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

" 在 vundle#begin() 與 vundle#end() 之間加上自己想裝的外掛

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required


Vundle 套件指令

:PluginList          - 列出外掛
:PluginInstall(!)    - 安裝(更新)外掛
:PluginSearch(!) str - 搜尋字串 str
:PluginClean(!)      - 確認移除或未使用的外掛

沒有留言: