Skip to content

Instantly share code, notes, and snippets.

@nicdk
Created December 6, 2012 11:14
Show Gist options
  • Save nicdk/4223762 to your computer and use it in GitHub Desktop.
Save nicdk/4223762 to your computer and use it in GitHub Desktop.
Aquamacs で solarized + Miguフォント

Aquamacs で solarized + Miguフォント

実行したバイナリVersion

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.

参考

やること

  1. package.el を入れる
  2. color-theme, color-theme-solarized を入れる
  3. Library/Preferences/Aquamacs Emacs/Preferences.el に初期設定を入れる。
  4. (場合によっては)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)
)

以上。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment