ziguzagu.org

今日の .emacs

snippet 以外でひさびさに追加した .emacs の設定。

;; turn off both beep and visual bell.
(setq ring-bell-function 'ignore)

;; reload a file when it was changed by another process
(global-auto-revert-mode t)

;; recent file mode
(recentf-mode 1)
(setq recentf-max-menu-items 10)
(setq recentf-max-saved-items 15)
(define-key global-map "\C-cr" 'recentf-open-files)
  • visual bell は知らず知らず目に悪いような気がしたのでやめ。
  • ほかの process で変更されたファイルを自動再読み込み。
  • 最近使ったファイルモード使う。