Mac に NeoBundle をインストール
ここを読むとできます。以下の記事は、ほぼコピペです。
GitHub - Shougo/neobundle.vim: Next generation Vim package manager
いやぁ、色々探していてやってみるんだけどエラーが満載で手がつけられず。
結局、READMEを発見して、それに従って完了と(。-`ω-)ンー
GitHub とか知らなかったしね。
Step1.
$ # ホームディレクトリに移動 $ cd $ # 移動確認 $ pwd $ # インストール実行 $ # Web上から自動で落としてくれるみたいですね。便利ですね。 $ curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh | sh
Step2.
$ vim の設定ファイルを開きます。 $ vi ~/.vimrc
下記のスクリプトをそのまま追記します。
if has('vim_starting') set nocompatible " Be iMproved " Required: set runtimepath+=~/.vim/bundle/neobundle.vim/ endif " Required: call neobundle#begin(expand('~/.vim/bundle/')) " Let NeoBundle manage NeoBundle " Required: NeoBundleFetch 'Shougo/neobundle.vim' " My Bundles here: " Refer to |:NeoBundle-examples|. " Note: You don't set neobundle setting in .gvimrc! " " ここに自分が欲しいモジュールを追記します。 " call neobundle#end() " Required: filetype plugin indent on " If there are uninstalled bundles found on startup, " this will conveniently prompt you to install them. NeoBundleCheck
Step3.
もう1度起動すると、こんな感じにります。
$ vi Not installed bundles: ['vimshell', 'ctrlp.vim', 'vim-colorschemes', 'vim-fugitive', 'neosnippet.vim', 'neosnippet-snippets'] Install bundles now? (y)es, [N]o: y # <- y キー押下 [neobundle/install] Update started: (2039/07/01 17:26:34) ... Press ENTER or type command to continue $ # 完了(`・ω・´)