2011年6月5日

emacs の細かな設定

;; ------------------------------------------------------------------------
;; @ 細かな設定

;; startup directory
(setq default-directory "~/")

;; ファイルのカーソル内の位置を記憶
(setq-default save-place t)

;; ガベッジコレクション閾値 を 4MB に
(setq gc-cons-threshold 4194304)

;; ログの記録行数を増やす
(setq message-log-max 10000)

;; キーストロークの表示速度を上げる
(setq echo-keystrokes 0.1)

;; でかいファイルも普通に開く(デフォルトは10MB)
(setq large-file-warning-threshold (* 25 1024 1024)) ;25MB

;; いちいち yes とか無理だから y にする
(defalias 'yes-or-no-p 'y-or-n-p)

0 件のコメント:

コメントを投稿