GVim で NeoBundle を使う

GVim でも NeoBundle が使いたい。ということで、作業メモになります。

msysgit のインストール

msysgit をインストールして、Windows で git を使えるようにします。

インストーラは下記URLからダウンロードします。
http://code.google.com/p/msysgit/downloads/list?q=full+installer+official+git

ウィザードの補足

Select Components

ウィザード:Select Components


Adjusting your PATH environment

ウィザード:Adjusting your PATH environment

Vim、IDE、コマンドプロンプト等から git コマンドを利用する場合は、2段目の「Run Git from the Windows Command Prompt」を選択。
※よく分からない場合も、これがおすすめ。

システム環境変数にの「Path」に「C:\Program Files (x86)\Git\cmd」が追加されます


Configuring the line ending conversions

ウィザード:Configuring the line ending conversions



git clone & :NeoBundleInstall

今回は MinGw (Windows上のUnixエミュレーション環境)で、neobudle を管理します。

$ vi ~/.bashrc

 :

export PATH=$PATH:/c/Program\ Files\ \(x86\)/Git/cmd # パスは環境により適宜変更
alias vim="/c/path/to/vim73-kaoriya-win64/gvim.exe"  # パスは環境により適宜変更

$ source ~/.bashrc # 設定ファイルの再読み込み
$ mkdir -p ~/.vim/bundle
$ git clone http://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
Cloning into '/path/to/.vim/bundle/neobundle.vim'...
$ ls -la ~/.vim/bundle
drwxr-xr-x 10 hoge fuga 4096 Aug 10 14:02 neobundle.vim/
$ vim hoge
:NeoBundleInstall