From f39d015a28160cb70cd100b7a56dd75d1c35ec7a Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sat, 3 Jun 2017 13:47:14 +0100 Subject: [PATCH] Emacs: Simplify backup regexp and remove old backup options --- .emacs.d/lisp/main.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.emacs.d/lisp/main.el b/.emacs.d/lisp/main.el index f74a1422..38ef6762 100644 --- a/.emacs.d/lisp/main.el +++ b/.emacs.d/lisp/main.el @@ -30,11 +30,7 @@ ;;; Place backup files in specific directory. (setq backup-directory-alist - `((".*" . ,(concat emacs-cache-folder "backups/")))) -;;; Other backup options. -;; (setq backup-inhibited t) -;; (setq make-backup-files t) -;; (setq version-control t) + `(("." . ,(concat emacs-cache-folder "backups/")))) ;;; Default mode (setq-default major-mode 'text-mode)