Installing Emacs with Homebrew #Mavericks

Homebrew で Emacs をインストールした時の作業メモ

Install

$ brew install --cocoa --srgb --with-gnutls --japanese emacs
$ sudo ln -s /usr/local/Cellar/emacs/24.3/Emacs.app /Applications/Emacs.app

GUIEmacs も使うことがあるので、/Applications へシンボリックリンクを作成する。

Configuration Alfred

Alfred はシンボリックリンクを辿ってくれないので、/usr/local/Cellar を検索範囲に含める。
Preferences -> Features -> Default Results -> Seach Scope で /usr/local/Cellar を追加する。*1

追記

日本語がカワイイ系フォントになってしまったので、以下の設定を ~/.emacs.d/init.el に追記。
英語フォントは Ricty を使用。

(set-face-attribute 'default nil
	    :family "Ricty"
            :height 140)

(set-fontset-font
 nil 'japanese-jisx0208
 (font-spec :family "Hiragino Kaku Gothic ProN"))

*1:+ を押して、shift + command + g でパスを入力する