TIL

Today I Learned. 知ったこと、学んだことを書いていく

Vimをカスタマイズ - vim

今はNeoBundleではなくdein.vimを使うことが推奨されているらしい
dein.vim 使ってみる - TIL


NeoBundleを使えるようにする

gitのインストール

sudo apt-get install git

NeoBundleのダウンロード

curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh
sh ./install.sh
rm -rf install.sh

.vimrcをダウンロード

ここからダウンロードする

完了後、vimを起動すると以下のように出るはず

Not installed bundles:  ['vim-fugitive', 'neocomplcache', 'nerdtree-git-plugin', 'neosnippet', 'gruv...-airline-themes', 'vim-airline', 'lightline.vim', 'neosnippet-snippets', 'tcomment_vim', 'nerdtree']
Install bundles now?
(y)es, [N]o: 

yを押す

インストールされて、再度vimを起動すると、反映されているはず

参考文献

VimへのNeoBundleのインストール(2015/09/21版) - Qiita