VundleはRubyのBundleにインスパイアされたとのことで、必要なVimプラグインを.vimrcに書くだけでインストールできる管理ツールです。(Gemfileに当たるのが.vimrcというイメージです)
早速インストール方法は下記を参照すればOK。
https://github.com/gmarik/vundle/blob/master/README.md
gitからVundel本体をとってきます。
$ git clone http://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/'} " vim-scripts repos Bundle 'L9' Bundle 'FuzzyFinder' Bundle 'rails.vim' " non github repos Bundle 'git://git.wincent.com/command-t.git' " ... filetype plugin indent on " required!
Ruby使いであれば下記を追記しておくと便利です。
Bundle 'Shougo/neocomplcache' Bundle 'Shougo/unite.vim' Bundle 'thinca/vim-ref' Bundle 'thinca/vim-quickrun' "Ruby Bundle 'rails.vim' "Html Bundle 'mattn/zencoding-vim'
これらの設定をした後はvimを起動して:BundleInstallでプラグインを一括でインストールできます。vim-refについては次の記事で設定をまとめます。
0 件のコメント:
コメントを投稿