GNU Emacs 23.3.50.1 (i386-apple-darwin9.8.0, NS apple-appkit-949.54) of 2011-10-26 on braeburn.aquamacs.org - Aquamacs Distribution 2.4 Copyright (C) 2011 Free Software Foundation, Inc.
- 画面の色を変える - Emacs Lisp TIPS
- elpa/color-theme-solalized-20120301/color-theme-solarized.el
- package.el を入れる
- color-theme, color-theme-solarized を入れる
- Library/Preferences/Aquamacs Emacs/Preferences.el に初期設定を入れる。
- (場合によっては)faceを変更する
初期設定はこれ。
(color-theme-solarized-dark)
faceの変更はこれ。コメントに使用しているイタリック体が指定した日本語フォントで豆腐になったので無効化した。
(set-face-italic-p 'font-lock-comment-face nil)
設定したのは全部でこれ。
(color-theme-solarized-dark)
(set-face-italic-p 'font-lock-comment-face nil)
(custom-set-faces
'(dired-mode-default ((t (:inherit autoface-default :height 120 :family "Migu 1M"))) t)
'(java-mode-default ((t (:inherit autoface-default :height 120 :family "Migu 1M"))) t)
'(text-mode-default ((t (:inherit autoface-default :stipple nil :strike-through nil :underline nil :slant normal :weight normal :height 180 :width normal :family "Migu 1M")))))
(custom-set-variables
'(solarized-termcolors 256)
)
以上。