LoginSignup
36
35

More than 5 years have passed since last update.

VimへのNeoBundleのインストール

Last updated at Posted at 2014-07-27

@yoza さんのdein.vimを使ってみるや、
@delphinus35 さんのNeoBundle から dein.vim に乗り換えたら爆速だった話で紹介されているdeinというのがいいそうです。

最新版はこちら

pluginのダウンロード

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

_vimrcの作成

.vimrcへの追記でもいいけど、ホームディレクトリへ_vimrcとして以下を保存するといい。

set nocompatible               " be iMproved
filetype off


if has('vim_starting')
  set runtimepath+=~/.vim/bundle/neobundle.vim
  call neobundle#rc(expand('~/.vim/bundle/'))
endif
" originalrepos on github
NeoBundle 'Shougo/neobundle.vim'
NeoBundle 'Shougo/vimproc', {
  \ 'build' : {
    \ 'windows' : 'make -f make_mingw32.mak',
    \ 'cygwin' : 'make -f make_cygwin.mak',
    \ 'mac' : 'make -f make_mac.mak',
    \ 'unix' : 'make -f make_unix.mak',
  \ },
\ }
NeoBundle 'VimClojure'
NeoBundle 'Shougo/vimshell'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neocomplcache'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'jpalardy/vim-slime'
NeoBundle 'scrooloose/syntastic'
NeoBundle 'Shougo/vimfiler.vim'
NeoBundle 'itchyny/lightline.vim'
NeoBundle 't9md/vim-textmanip'

NeoBundle 'Shougo/unite.vim'
NeoBundle 'ujihisa/unite-colorscheme'
NeoBundle 'tomasr/molokai'
""NeoBundle 'https://bitbucket.org/kovisoft/slimv'

filetype plugin indent on     " required!
filetype indent on
syntax on

vimprocのdllをコピー

kaoriya版の場合はvimprocが同封されているので、コピーする。

{kaoriya版gVimインストールディレクトリ}\plugins\vimproc\autoload\vimproc_win64.dllを.vim\bundle\vimproc.vim\autoloadへコピーする。

インストール

vimを起動して以下を実行する。

:NeoBundleInstall

36
35
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
36
35