<Vim, NeoBundle, SystemVerilog> NeoBundleインストール(再)と他。

諸事情により、NeoBundleを再度インストール。

github.com

上記の作者の説明どおり進める。

mkdir -p ~/.vim/bundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim

で、.vimrcの書き換え。
次を追加。

 45 " NeoBundle
 46 " ----------------------------------------------
 47 set nocompatible
 48 filetype off
 49 filetype plugin indent off
 50
 51 set runtimepath+=~/.vim/bundle/neobundle.vim
 52 call neobundle#begin(expand('~/.vim/bundle/'))
 53 let g:neobundle_default_git_protocol='https'
 54
 55 NeoBundle 'Shougo/neobundle.vim'
 56 
 57 call neobundle#end()
 58
 59 filetype plugin indent on

で、vimを起動して、次の呪文を唱える。

:NeoBundleInstall

終わり。

諸事情により次のパッケージをインストール。

github.com