Mac全般

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

neobundleのインストール

$ 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

"ツリー表示
NeoBundle 'scrooloose/nerdtree'

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

トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2022-06-30 (木) 01:40:11