Unmotivated

やる気はない

XVim を Xcode 5.1 にインストール

vim キーバインドじゃないとなにもやる気が起きないので、 Xcode 5.1 に XVim を導入します。

インストール

1. リポジトリをクローン

  • clone
1
$ git clone https://github.com/JugglerShu/XVim.git
  • XCode 5.1 の場合は develop Branch を使うように指定があるので、 develop Branch を Checkout
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$ cd XVim
$ git branch -a
* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/bang
  remotes/origin/dev/buffer-refactor
  remotes/origin/develop
  remotes/origin/features/hlcolor#458
  remotes/origin/features/substitute
  remotes/origin/features/unittest
  remotes/origin/features/vs-sp#365
  remotes/origin/gh-pages
  remotes/origin/handlingMouseEvents
  remotes/origin/master
  remotes/origin/v2.0-dev/Logging#449
  remotes/origin/windowing
$ git checkout develop
$ git branch
* develop
  master

2. ビルド〜インストール

  • Xcode を開いて XVim.xcodeproj をロード
  • スキームを Xcode5 に変更 xvim 01
  • Edit Scheme を開いて xvim 02
  • Build Configuration を Release に変更 xvim 03
  • ビルド&実行すると自動的にプラグインに登録される
  • Xcode を再起動

.xvimrc を設置

  • ~/.vimrc の代わりに ~/.xvimrc が適用される
  • 使用可能コマンドの一覧はこちらを参照

Comments