Vim のプラグイン管理を Vundle から NeoBundle に変更

つい先日 Vim プラグインの管理に Vundle を使用するようにしたのだが、
いろいろと調べていると Vundle を改良した NeoBundle というプラグインが
あるということでこちらを使うように方向転換した。


良いと思える所は以下。

  • shellslash を設定していても動作する
  • Subversion に対応している
  • リビジョン指定ができる

などなど...


NeoBundle は以下の GitHub から取得。
https://github.com/Shougo/neobundle.vim

必要十分な設定手順が README に記載されているので、基本的にはその内容に従って設定。

私の環境の _vimrc には以下のように設定している。

"------------------------------------------------------------
" environment dependence
"------------------------------------------------------------
if has('win32') || has('win64')
	set shellslash
	let $DOTVIM = expand('~/vimfiles')
else
	let $DOTVIM = expand('~/.vim')
endif


"------------------------------------------------------------
" NeoBundle setting
"------------------------------------------------------------
filetype off

if has('vim_starting')
	set runtimepath+=$DOTVIM/bundle/neobundle.vim/
endif

call neobundle#rc( expand('$DOTVIM/bundle/') )

NeoBundleFetch 'Shougo/neobundle.vim'

NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/vimfiler'
NeoBundle 'fuenor/qfixhowm'
NeoBundle 'taglist.vim'

filetype plugin indent on

NeoBundleCheck