neobundle.vim
Shougo/neobundle.vim - GitHub
導入
- neobundle.vimおよびneobundleで管理するプラグインを保存するディレクトリを作成し(自分は/.vim/neobundleにした)、neobundle.vimをインストールする。
$ mkdir PATH/TO/BUNDLE
$ git clone git://github.com/Shougo/neobundle.vim.git PATH/TO/BUNDLE/neobundle.vim
if has('vim_starting')
set runtimepath+=PATH/TO/BUNDLE/neobundle.vim
filetype off
call neobundle#rc(expand('PATH/TO/BUNDLE'))
filetype plugin on
filetype indent on
endif
" NeoBundle 使用するVimプラグインの(リポジトリ|プラグイン名)"
NeoBundle 'https://bitbucket.org/anyakichi/vim-histsearch'
NeoBundle 'https://github.com/h1mesuke/vim-alignta.git'
NeoBundle 'https://github.com/othree/eregex.vim.git'
NeoBundle 'https://github.com/Shougo/neocomplcache.git'
NeoBundle 'https://github.com/thinca/vim-logcat.git'
NeoBundle 'https://github.com/ujihisa/neco-look.git'
NeoBundle 'current-func-info.vim'
NeoBundle 'surround.vim'
NeoBundle 'YankRing.vim'
NeoBundle 'taglist.vim'- vimを開き、:NeoBundleInstall!を実行すると、PATH/TO/BUNDLE以下にプラグインがインストールされる。
:NeoBundleInstall!
Installed bundles:
vim-histsearch
YankRing.vim
vim-alignta
current-func-info.vim
vim-logcat
surround.vim
eregex.vim
neco-look
taglist.vim
neocomplcache
Helptags: done. 8 bundles processed
$ ls -1 PATH/TO/BUNDLE
neocomplcache/
taglist.vim/
neco-look/
eregex.vim/
surround.vim/
vim-logcat/
current-func-info.vim/
vim-alignta/
YankRing.vim/
neobundle.vim/