Move backups folder into .emacs.d
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run

This commit is contained in:
Maciej 2024-07-21 10:08:48 +03:00
parent f0d07952b4
commit a82e24839c
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
2 changed files with 3 additions and 3 deletions

View file

@ -54,9 +54,9 @@
;; #====================== Backup config #============================== ;; #====================== Backup config #==============================
(setq backup-directory-alist (setq backup-directory-alist
`((".*" . "~/.emacs_backups/auto-save-list"))) `((".*" . "~/.emacs/backups/auto-save-list")))
(setq auto-save-file-name-transforms (setq auto-save-file-name-transforms
`((".*", "~/.emacs_backups/auto-save-list" t))) `((".*", "~/.emacs/backups/auto-save-list" t)))
(setq backup-by-copying t) (setq backup-by-copying t)
(setq delete-old-versions t (setq delete-old-versions t

View file

@ -16,7 +16,7 @@
:straight t :straight t
:config (setq-default :config (setq-default
;; Save history to a specific folder ;; Save history to a specific folder
undo-tree-history-directory-alist '(("." . "~/.emacs_backups/undo-tree")) undo-tree-history-directory-alist '(("." . "~/.emacs/backups/undo-tree"))
;; Show diff ;; Show diff
undo-tree-visualizer-diff t undo-tree-visualizer-diff t
;; Show timestamps ;; Show timestamps