TheBB / dotfiles

Configuration files
19 stars 4 forks source link

Question about backup config #1

Open d1egoaz opened 8 years ago

d1egoaz commented 8 years ago

I'm just wondering why after you define backup rules in https://github.com/TheBB/dotfiles/blob/master/emacs/spacemacs.el#L127:

   ;; Backups
   backup-directory-alist `((".*" . ,temporary-file-directory))
   auto-save-file-name-transforms `((".*" ,temporary-file-directory t))
   backup-by-copying t
   delete-old-versions t
   kept-new-versions 6
   kept-old-versions 2

you disable backups after that in: https://github.com/TheBB/dotfiles/blob/master/emacs/spacemacs.el#L134

make-backup-files nil

btw, thanks for sharing your config and great video https://www.youtube.com/watch?v=HKF41ivkBb0

TheBB commented 8 years ago

Just stuck there from an older version I suppose. On Oct 20, 2015 1:28 AM, "Diego Alvarez" notifications@github.com wrote:

I'm just wondering why after you define backup rules in https://github.com/TheBB/dotfiles/blob/master/emacs/spacemacs.el#L127:

;; Backups backup-directory-alist ((".*" . ,temporary-file-directory)) auto-save-file-name-transforms((".*" ,temporary-file-directory t)) backup-by-copying t delete-old-versions t kept-new-versions 6 kept-old-versions 2

you disable backups after that in: https://github.com/TheBB/dotfiles/blob/master/emacs/spacemacs.el#L134

make-backup-files nil

btw, thanks for sharing your config and great video https://www.youtube.com/watch?v=HKF41ivkBb0

— Reply to this email directly or view it on GitHub https://github.com/TheBB/dotfiles/issues/1.