neobundle.vimの導入 GitHubからcloneするだけで導入できます。 $ git clone https://github.com/Shougo/neobundle.vim ~/.vim/neobundle.vim.git プラグインの管理 ~/.vimrcに以下の行を追加します。 1 filetype off 2 3 if has('vim_starting') 4 set runtimepath+=~/.vim/neobundle.vim.git 5 call neobundle#rc(expand('~/.vim/.bundle')) 6 endif 7 8 NeoBundle 'Shougo/unite.vim' 9 NeoBundle 'Shougo/neocomplcache' 10 NeoBundle 'thinca/vim-ref' 11 12 filety