@@ -1191,21 +1191,26 @@ if REMOTE is https://github.com/X/Y then LOCAL becomes ∼/Y."
1191
1191
; ; I have symlinks for various things, just follow them, do not ask me.
1192
1192
(setq vc-follow-symlinks t )
1193
1193
1194
+ ; ; After my settings have been loaded, e.g., fancy priorities
1195
+ ; ; and cosmetics, then open my notes files.
1196
+ (add-hook 'emacs-startup-hook (lambda () (find-file " ~/Documents/notes.org" )))
1197
+
1194
1198
; ; If work machine, then show notes; otherwise show my todos & init side-by-side.
1195
- (unless noninteractive
1196
- ; ; Only run the following when we're in GUI mode;
1197
- ; ; i.e., don't run it in Github Actions when testing.
1198
- (if (not my/personal-machine?)
1199
- (find-file " ~/Documents/notes.org" )
1200
- (find-file " ~/Dropbox/todo.org" )
1201
- ; ; After startup, if Emacs is idle for 10 seconds, then open my work file;
1202
- ; ; which is a GPG file and so requires passphrase before other things can load.
1203
- ; ; (run-with-idle-timer 10 nil (lambda () (find-file "~/Desktop/work.org.gpg")))
1204
- (split-window-right ) ; ; C-x 3
1205
- (other-window 1 ) ; ; C-x 0
1206
- (let ((enable-local-variables :all ) ; ; Load *all* locals.
1207
- (org-confirm-babel-evaluate nil )) ; ; Eval *all* blocks.
1208
- (ignore-errors (find-file " ~/.emacs.d/init.org" )))))
1199
+ (when nil
1200
+ (unless noninteractive
1201
+ ; ; Only run the following when we're in GUI mode;
1202
+ ; ; i.e., don't run it in Github Actions when testing.
1203
+ (if (not my/personal-machine?)
1204
+ (find-file " ~/Documents/notes.org" )
1205
+ (find-file " ~/Dropbox/todo.org" )
1206
+ ; ; After startup, if Emacs is idle for 10 seconds, then open my work file;
1207
+ ; ; which is a GPG file and so requires passphrase before other things can load.
1208
+ ; ; (run-with-idle-timer 10 nil (lambda () (find-file "~/Desktop/work.org.gpg")))
1209
+ (split-window-right ) ; ; C-x 3
1210
+ (other-window 1 ) ; ; C-x 0
1211
+ (let ((enable-local-variables :all ) ; ; Load *all* locals.
1212
+ (org-confirm-babel-evaluate nil )) ; ; Eval *all* blocks.
1213
+ (ignore-errors (find-file " ~/.emacs.d/init.org" ))))))
1209
1214
1210
1215
; ; The modeline looks really nice with doom-themes, e.g., doom-solarised-light.
1211
1216
(use-package doom-modeline
@@ -2061,18 +2066,28 @@ Example uses:
2061
2066
2062
2067
(setq org-agenda-span 'week )
2063
2068
2064
- (setq org-agenda-custom-commands '((" o" " Open Loops" tags-tree " TODO=\" STARTED\" " )))
2069
+ ; ; (setq org-agenda-custom-commands '(("o" "Open Loops" tags-tree "TODO=\"STARTED\"" )))
2065
2070
2066
2071
(setq org-log-into-drawer t ) ; ; hide the log state change history a bit better
2067
2072
2073
+
2074
+ (setq org-fold-catch-invisible-edits 'show-and-error ; ; Avoid accidental edits to folded sections
2075
+ org-special-ctrl-a/e t ; ; C-a/C-e know about leading “*” and ending :tags:
2076
+ ; ; Agenda styling
2077
+ org-agenda-tags-column -80
2078
+ org-agenda-time-grid '((daily today require-timed)
2079
+ (800 1000 1200 1400 1600 1800 2000 )
2080
+ " ───── " " ───────────────" )
2081
+ org-agenda-current-time-string " ◀── now ─────────────────────────────────────────────────" )
2082
+
2068
2083
; ; p to “p”ush back a task to the next day.
2069
2084
(add-hook 'org-agenda-mode-hook
2070
2085
; ; Note: There's also org-agenda-date-earlier to change the date by -1 day.
2071
2086
(lambda ()
2072
- (define-key org-agenda-mode-map " p" 'org-agenda-date-later )
2087
+ (define-key org-agenda-mode-map " p" 'org-agenda-date-later )
2073
2088
2074
- ; ; Reschedule agenda items to today, “right 𝓃ow”, with a single command
2075
- (define-key org-agenda-mode-map " n" (defun org-agenda-reschedule-to-today ()
2089
+ ; ; Reschedule agenda items to today, “right 𝓃ow”, with a single command
2090
+ (define-key org-agenda-mode-map " n" (defun org-agenda-reschedule-to-today ()
2076
2091
(interactive )
2077
2092
(flet ((org-read-date (&rest rest) (current-time )))
2078
2093
(call-interactively 'org-agenda-schedule ))))))
@@ -2102,6 +2117,21 @@ Example uses:
2102
2117
; ; list items will be treated like low-level headlines; i.e., folded by default.
2103
2118
(setq org-cycle-include-plain-lists 'integrate )
2104
2119
2120
+ ; ; clear checkbox when repeating a todo task
2121
+ (add-hook 'org-todo-repeat-hook #'org-reset-checkbox-state-subtree )
2122
+
2123
+ ; ; clear sub-sub-tasks when repeating a todo task.
2124
+ ; ; ⇒ If I have “** A [%] \n #+STYLE: habit \n SCHEDULED: <2024-04-19 Fri .+1d> \n *** DONE B”
2125
+ ; ; then on “** A” I press ‘t’ then mark it as ‘DONE’, then the “*** B” task resets to ‘TODO’.
2126
+ (add-hook 'org-todo-repeat-hook
2127
+ (lambda () (org-map-entries (lambda () (when (> (length (org-get-outline-path )) 1 ) (org-todo " TODO" ))) t 'tree )))
2128
+
2129
+ ; ; “C-c a t” ⇒ List all (non-recurring non-someday) todos sorted by state, priority, effort
2130
+ (setq org-agenda-custom-commands
2131
+ '((" t" " My list of all TODO entries" tags-todo " -recurring-someday"
2132
+ ((org-agenda-overriding-header " \n TODOs sorted by state, priority, effort" )
2133
+ (org-agenda-sorting-strategy '(todo-state-down priority-down effort-up))))))
2134
+
2105
2135
(cl-defmacro my/work-links (type url &optional (export-display '(format " %s-%s" type label)))
2106
2136
" Given a link of TYPE with a URL, produce the correct org-link.
2107
2137
0 commit comments