Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 618 Bytes

backup.org

File metadata and controls

28 lines (22 loc) · 618 Bytes

#+title Backup #+author Daan van Berkel #+email [email protected]

Autosave

I do not like the autosave functionality. Work loss is an indication that you should commit more often.

(setq auto-save-default nil)

Backup

We are going to experiment with backing up files. If I never visit the backup directory we will changes it to never make back ups.

(setq
   backup-by-copying t
   backup-directory-alist
      '(("." . "~/.emacs.d/.backup"))
   delete-old-versions t
   kept-new-versions 6
   kept-old-versions 2
   version-control t)