Vimのプラグイン管理にNeoBundleを使うことにした

元々あんましプラグイン管理とかしてなかったんだけど、あちこちの環境で拾ってきてインスコしての繰り返しがめんどくさくなったので。
http://github.com/gmarik/vundle使ってみたんだけど、http://github.com/Shougo/neobundle.vimが面白そうだったのでこっちを使うことに。
以下、https://github.com/Shougo/neobundle.vim/blob/master/README.mdのほぼコピペ。

mkdir -p ~/.vim/bundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
set nocompatible               " be iMproved
filetype plugin indent off     " required!

if has('vim_starting')
  set runtimepath+=~/.vim/bundle/neobundle.vim/
  call neobundle#rc(expand('~/.vim/bundle/'))
endif
" let NeoBundle manage NeoBundle
" required! 
"NeoBundle 'Shougo/neobundle.vim'
" recommended to install
NeoBundle 'Shougo/vimproc'
" after install, turn shell ~/.vim/bundle/vimproc, (n,g)make -f your_machines_makefile
NeoBundle 'Shougo/vimshell'
NeoBundle 'Shougo/unite.vim'

" My Bundles here:
"
" " original repos on github
" NeoBundle 'tpope/vim-fugitive'
" NeoBundle 'Lokaltog/vim-easymotion'
" NeoBundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" " vim-scripts repos
" NeoBundle 'L9'
" NeoBundle 'FuzzyFinder'
" NeoBundle 'rails.vim'
" " non github repos
" NeoBundle 'git://git.wincent.com/command-t.git'
" " non git repos
" NeoBundle 'http://svn.macports.org/repository/macports/contrib/mpvim/'
" NeoBundle 'https://bitbucket.org/ns9tks/vim-fuzzyfinder'

NeoBundle 'vim-jp/vimdoc-ja'

" ...

filetype plugin indent on     " required!
"
" Brief help
" :NeoBundleList          - list configured bundles
" :NeoBundleInstall(!)    - install(update) bundles
" :NeoBundleClean(!)      - confirm(or auto-approve) removal of unused bundles
"

Searchがなくてめんどいが、vim-script reposの正しいプラグイン名称はここで取れる。
http://vim-scripts.org/vim/scripts.html