http://qiita.com/poad1010/items/0434466cec41193b1136の最新版です。
pluginのダウンロード
Linux/Mac OS XなどのUNIX系の場合
curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh
sh ./install.sh
rm -rf install.sh
Windowsの場合
mkdir -p ~/.vim/bundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
_vimrcの作成
call neobundle#rc() とかが動かなくなっていたので、NeoBundle公式のREADMEを参考にしながら修正しました。
以下、_vimrcの最新版となります。
vimrc
"Note:Skipinitializationforvim-tinyorvim-small.if0|endiffiletypeoffifhas('vim_starting')if&compatiblesetnocompatible"BeiMprovedendifsetruntimepath+=~/.vim/bundle/neobundle.vimendifcallneobundle#begin(expand('~/.vim/bundle/'))"originalreposongithubNeoBundle'Shougo/neobundle.vim'NeoBundle'Shougo/vimproc', {\'build' : {\'windows' : 'make -f make_mingw32.mak',\'cygwin' : 'make -f make_cygwin.mak',\'mac' : 'make -f make_mac.mak',\'unix' : 'make -f make_unix.mak',\},\}NeoBundle'VimClojure'NeoBundle'Shougo/vimshell'NeoBundle'Shougo/unite.vim'NeoBundle'Shougo/neocomplcache'NeoBundle'Shougo/neosnippet'NeoBundle'jpalardy/vim-slime'NeoBundle'scrooloose/syntastic'NeoBundle'Shougo/vimfiler.vim'NeoBundle'itchyny/lightline.vim'NeoBundle't9md/vim-textmanip'NeoBundle'Shougo/unite.vim'NeoBundle'ujihisa/unite-colorscheme'NeoBundle'tomasr/molokai'""NeoBundle'https://bitbucket.org/kovisoft/slimv'callneobundle#end()filetypepluginindenton"required!filetypeindentonsyntaxonNeoBundleCheck
おまけ
Ubuntuでプリインストールされているvim-tinyでは動きません。
shell
sudoapt-getremovevim-tinysudoapt-getinstallvim
とすれば、動作します。