Dove (Plain)

MeadowでのEmacs-Rails

ruby-modeがデフォルトで入っているMeadowインストールキットらしい。
手っ取り早いのでこれを入れてみる
http://www.vector.co.jp/soft/win95/writing/se101233.html

.emacsの初期フレームを以下のように設定

;; 初期フレームの設定
(setq default-frame-alist
;;      (append (list '(foreground-color . "black")
      (append (list '(foreground-color . "grey85")
;;		    '(background-color . "LemonChiffon")
		    '(background-color . "black")
		    '(background-color . "gray")
		    '(border-color . "black")
		    '(mouse-color . "white")
		    '(cursor-color . "black")
;;		    '(ime-font . "Nihongo-12") ; TrueType のみ
;;		    '(font . "bdf-fontset")    ; BDF
;;		    '(font . "private-fontset"); TrueType
;;		    '(font . "MS Gothic 12"); TrueType
		    '(width . 100)
		    '(height . 40)
		    '(top . 100)
		    '(left . 10))
	      default-frame-alist))

ruby-mode入っているのに日本語UTF-8が表示できない・・・