;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; -*- coding: utf-8-unix -*- ;; FSF Emacs 23 用 ユーザ設定ファイル ;; Munehiro Yamamoto ;; $Id: .emacs.el,v 1.53 2009/04/20 18:32:24 daisuke Exp $ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;;; ユーザーの初期設定ファイルの指定 ;; (setq user-init-file "~/.emacs.el") ;; (setq custom-file "~/.emacs-custom.el") ;; ;;; マクロサーチパスの追加 ;; ;;; ~/lib/emacs 以下にユーザ用の *.el, *.elc を置くことができます ;; (setq load-path (append '("~/lib/emacs") load-path)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; (旧版)ユーザ用初期化ファイル ;; ~/.emacs.my.el に個人用設定を書けます。 ;; このファイルを直接いじりたくない場合は、個人設定を分離してください。 ;; (if (file-exists-p (expand-file-name "~/.emacs.my.el")) ;; (load (expand-file-name "~/.emacs.my.el") nil t nil)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Local Variables: ;; mode: emacs-lisp ;; End: