First Things in my .emacs
Pardon the extra linebreaks. I don’t normally format my lisp code this way, but the layout of my blog makes this snippet linewrap and hard to read. (global-font-lock-mode t) (defvar autosave-dir “~/.emacs.d/autosave”) (make-directory autosave-dir t) (defun auto-save-file-name-p (filename) (string-match “^#.*#$” (file-name-nondirectory filename))) (defun make-auto-save-file-name () (concat autosave-dir (if buffer-file-name (concat “#” (file-name-nondirectory buffer-file-name) “#”) (expand-file-name [...]