;;; for basic (set-language-environment "Japanese") (prefer-coding-system 'euc-jp) ;ミニバッファに時計表示 (display-time) ;タイトルバーの表示をファイル名にする (setq frame-title-format "%b") (line-number-mode t) ; 行番号を表示 (column-number-mode t) ; 桁番号を表示 ;;; for mew (autoload 'mew "mew" nil t) (autoload 'mew-send "mew" nil t) ;C言語のソースファイル .c でも fundamental-mode で起動 (setq auto-mode-alist (cons '("\\.c$" . fundamental-mode) auto-mode-alist)) ;TeX のソースファイル .tex でも fundamental-mode で起動 (setq auto-mode-alist (cons '("\\.tex$" . fundamental-mode) auto-mode-alist)) ;タブストップは 4 カラムおき (setq-default tab-width 4) (load "~/.emacs-faces.el")