$ mkdir -p ~/.vim/bundle
$ git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
$ vim ~/.vimrc
set nocompatible
filetype off
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim
call neobundle#rc(expand('~/.vim/bundle'))
endif
#NeoBundle 'tpope/vim-surround'
#ここに行を追加していってプラグイン管理します。
filetype plugin on
filetype indent on
プラグインのインストールは:NeoBundleInstall
、アンインストールは:NeoBundleClean
です。
公式ページは ここ で良いんですかね? ← 少し古いサイトなので注意したほうが良い旨のコメントをいただきました。ありがとうございます!
GitHubのリポジトリを見るのが確実ですね