~/lib/conf/emacs/anthy.el
(progn
;; anthy.el をロードできるようにする
(load-file "~/lib/conf/emacs/site-lisp/anthy/leim-list.el")
(push "~/lib/conf/emacs/site-lisp/anthy/" load-path)
;; anthy.el をロードする。
(load-library "anthy")
;; japanese-anthy をデフォルトの input-method にする。
(setq default-input-method "japanese-anthy")
;; 変換開始キー
(define-key global-map "\C-\\" 'toggle-input-method)
;;(define-key global-map "\C-o" 'toggle-input-method)
;;(define-key global-map [kanji] 'toggle-input-method)
;;(define-key global-map [M-kanji] 'toggle-input-method)
;;(global-set-key [?\S-\ ] 'toggle-input-method)
;;(global-set-key [zenkaku-hankaku] 'toggle-input-method)
;; バックスペースでローマ字単位で消す
;;(anthy-set-break-into-roman 't)
;; 句読点を「,.」に変更
(anthy-load-hiragana-map anthy-alt-char-map)
;;変換時の文字の色
(set-face-foreground 'anthy-highlight-face "white")
(set-face-background 'anthy-highlight-face "black")
;;アンダーライン消去
(set-face-underline 'anthy-highlight-face nil)
(set-face-underline 'anthy-underline-face nil)
(set-face-background 'anthy-underline-face "dark blue")
)
>> emacsの設定