From 63172a43c57acbfd5cd5f6e91014be8b7f2d53eb Mon Sep 17 00:00:00 2001 From: rearman Date: Thu, 7 Dec 2023 12:32:44 -0500 Subject: [PATCH] Change location of backups, tewaks to done state Change backup location from temp folder to ~/emacs-backups Make org record a description when coming out of DONE state, and record links as absolute path --- init.org | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/init.org b/init.org index b8c37e4..4199798 100644 --- a/init.org +++ b/init.org @@ -275,12 +275,12 @@ I want these things every time, or at least setting them this way worked when a I originally had some autosave items in here, but the defaults appeared to be doing basically what I wanted anyway. **** Backups -Make backups for vc-controlled files, don't clobber symlinks, and put everything into the temp directory (determined by os). +Make backups for vc-controlled files, don't clobber symlinks, and put everything into =~/emacs-backups/=. #+BEGIN_SRC emacs-lisp (setq vc-make-backup-files t backup-by-copying t - backup-directory-alist `((".*" . ,temporary-file-directory))) + backup-directory-alist `((".*" . "~/emacs-backups/"))) #+END_SRC **** Old versions @@ -475,7 +475,8 @@ Just some basic/misc stuff. I don't think I've seen too many configs that don't org-catch-invisible-edits 'error org-deadline-warning-days 30 org-table-export-default-format "orgtbl-to-csv" - org-agenda-window-setup 'current-window) + org-agenda-window-setup 'current-window + org-link-file-path-type 'absolute) #+END_SRC *** Bindings @@ -530,7 +531,7 @@ Set up some more todo keywords "APPT(a!)" "|" "DELEGATED(l@)" - "DONE(d!)" + "DONE(d!/@)" "CANCELLED(c@)"))) #+END_SRC -- 2.39.5