Created
January 30, 2010 15:48
-
-
Save mick/290599 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defvar user-temporary-file-directory | |
| (concat temporary-file-directory user-login-name "/")) | |
| (make-directory user-temporary-file-directory t) | |
| (setq backup-by-copying t) | |
| (setq backup-directory-alist | |
| `(("." . ,user-temporary-file-directory) | |
| (,tramp-file-name-regexp nil))) | |
| (setq auto-save-list-file-prefix | |
| (concat user-temporary-file-directory ".auto-saves-")) | |
| (setq auto-save-file-name-transforms | |
| `((".*" ,user-temporary-file-directory t))) | |
| (setq-default indent-tabs-mode nil) | |
| (load "dthompson") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment