Vim可以安裝各種plugin,而Vundle這個就是來管理安裝更新這些plugin的工具。
安裝需求
Git #用於下載plugin的工具
Curl #用來搜尋plugin的工具
Ubuntu
$ apt-get install -y git curl
開始安裝
Ubuntu安裝
$ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
設定.vimrc
裡面加上
set nocompatible " be iMproved
filetype off " required!I
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'vim-scripts/fcitx.vim'
filetype plugin indent on " required!
範例-安裝HTML5語法顯示
1.進入Vim
2.搜尋
找到的結果
"Keymap: i - Install plugin; c - Cleanup; s - Search;
R - Reload list
"Search results for: html5
Plugin 'html5.vim'
Plugin 'HTML5-Syntax-File'
HTML5-Syntax-File 就是我們要安裝的東西
離開尋找結果
離開vim
3.修改.vimrc
編輯.vimrc
在.vimrc中加入
Bundle 'HTML5-Syntax-File'
儲存離開
4.安裝
查看幫助
安裝套件
更新套件
列出可用的套件
搜尋套件
反安裝不在列表中的套件
留言
張貼留言