Emacs question

Try putting the following in your .emacs file:

[FONT=Verdana, Arial, Helvetica, sans-serif][SIZE=-1] ;; do not make backup files
(setq make-backup-files nil)


source: here

alternatively it looks like you can have Emacs store them all centrally:

[/SIZE][/FONT] ;; ========== Place Backup Files in Specific Directory ==========
;; Enable backup files.
(setq make-backup-files t)

;; Enable versioning with default values (keep five last versions, I think!)
(setq version-control t)

;; Save all backup file in this directory.
(setq backup-directory-alist (quote ((".*" . "~/.emacs_backups/"))))

source: here

(both sources have other customisations to)
 
Last edited:
Back
Top Bottom