普段NeoBundleを使っていて特に今のところ問題ないのだが、なんとなく気分で乗り換えてみる。
dein.vimとは?
みなさんご存知Shougoさん作成のvimプラグインマネージャ
Dein.vim is a dark powered Vim/Neovim plugin manager.
中二病心がくすぐられる説明文
早速使ってみる
好きなディレクトリにdeinを持ってくる
cd ~/.vim/dein
git clone https://github.com/Shougo/dein.vim.git
deinで管理したいプラグインをvimrcに記述
if&compatiblesetnocompatibleendifsetruntimepath+=~/.vim/dein/dein.vimcall dein#begin(expand('~/.vim/dein'))call dein#add('Shougo/neocomplete.vim')call dein#add('Shougo/neomru.vim')call dein#add('Shougo/neosnippet')" (中略)call dein#end()
インストールする
:call dein#install()
入れたプラグインは:Unite dein
で確認できる
備考
Shougoさんのvimrcを見るとtomlにプラグインを記述してるので、そういう書き方もできるみたい。