CentOS 6.4でVimを使っており、NeoBundleをインストールしましたが、プラグインがうまくインストールできません。

~/.vimrcの記述は以下になっています。

if &compatible
    set nocompatible               " Be iMproved
endif
set runtimepath+=/root/.vim/bundle/neobundle.vim/
call neobundle#begin(expand('/root/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'

filetype plugin indent on
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'joonty/vdebug'
NeoBundle 'scrooloose/nerdtree'

call neobundle#end()
NeoBundleCheck

vimを再起動すると以下メッセージが表示され、yを押すのですがプラグインがインストールされません。

Not installed bundles:  ['neosnippet.vim', 'vdebug', 'unite.vim',
'nerdtree'] Install bundles now? (y)es, [N]o:

コマンドモードでもコマンドが表示されませんし、/.vim/bundle/にもプラグインが入っていません。
ディレクトリの実行権限も一応777にしてます。
何かわかりましたらご教授おねがいします。