Mac全般

インストールするための準備(MacOS X 10.11) [#t4778cdf]

neobundleのインストール [#o54ed3fa]

 $ curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh
 $ sh ./install.sh
 $   
/.vimrc
 ---
 if has('vim_starting')
   " 初回起動時のみruntimepathにneobundleのパスを指定する
   set runtimepath+=  
/.vim/bundle/neobundle.vim/
 endif
 
 " NeoBundleを初期化
 call neobundle#begin(expand('  
/.vim/bundle/'))
 
 " インストールするプラグインをここに記述
 NeoBundle 'Shougo/unite.vim'
 NeoBundle 'Shougo/vimfiler'
 
 call neobundle#end()
 
 " ファイルタイプ別のプラグイン/インデントを有効にする
 filetype plugin indent on
 
 " プラグインのチェック
 NeoBundleCheck 
 
 
 ここから下に色々設定
 
 最後に下記を実行
 :NeoBundleInstall

ファイルのツリー表示プラグイン:NERDTree [#xebc8c6e]

 "ツリー表示
 NeoBundle 'scrooloose/nerdtree'
 
 "自動でファイラーを起動
 NeoBundle 'scrooloose/nerdtree'