summaryrefslogtreecommitdiff
path: root/config.org
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@szymonszukalski.com>2026-04-07 21:29:37 +1000
committerSzymon Szukalski <szymon@szymonszukalski.com>2026-04-07 21:29:37 +1000
commitd234df7277a53333204af44e6d02b76606067314 (patch)
tree39d37c2dc1aaaa882de8fefb029428d8306509a9 /config.org
parenta28e8cac4bcba8aa052572fe67e4c7007d599ead (diff)
fix: move people rolodex into areas
Diffstat (limited to 'config.org')
-rw-r--r--config.org10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.org b/config.org
index 56f1738..4a5c426 100644
--- a/config.org
+++ b/config.org
@@ -279,7 +279,7 @@ annotations.
* Name shortcuts
-The people workflow is a lightweight rolodex backed by a single =~/org/people.org=
+The people workflow is a lightweight rolodex backed by a single =~/org/areas/people/people.org=
file. Each top-level heading is a compact card with properties for lookup,
completion, reports, and abbrevs. Abbrev remains the fast path for names you
type all the time, while CAPF plus Corfu remains the discovery path. The
@@ -292,7 +292,7 @@ machine-facing layer only reads heading text and properties; the =Context= and
(require 'marginalia nil t)
(defconst ss/people-file
- (expand-file-name "people.org" "~/org/")
+ (expand-file-name "areas/people/people.org" "~/org/")
"Single source of truth for the lightweight people rolodex.")
(defconst ss/people-engagement-values
@@ -527,7 +527,7 @@ machine-facing layer only reads heading text and properties; the =Context= and
(file-truename ss/people-file))))
(defun ss/people--open-entry (entry)
- "Open people.org and narrow to ENTRY."
+ "Open the people rolodex file and narrow to ENTRY."
(find-file (ss/people--ensure-file))
(widen)
(let ((position (org-find-exact-headline-in-buffer
@@ -723,7 +723,7 @@ machine-facing layer only reads heading text and properties; the =Context= and
(add-hook 'completion-at-point-functions #'ss/people-capf nil t)))
(defun ss/people--maybe-overview-buffer ()
- "Reset people.org to overview when visiting it directly."
+ "Reset the people rolodex file to overview when visiting it directly."
(when (and buffer-file-name
(string= (file-truename buffer-file-name)
(file-truename ss/people-file)))
@@ -935,7 +935,7 @@ integration so note identity, metadata, and directories stay under Denote's
control rather than custom code. The convenience templates keep the familiar
entry points, but only project capture injects a structural keyword by default.
The people rolodex lives outside =org-capture=: adding a person uses the
-dedicated =ss/people-add= command so =~/org/people.org= stays a compact,
+dedicated =ss/people-add= command so =~/org/areas/people/people.org= stays a compact,
structured card file rather than turning into another capture target.
#+begin_src emacs-lisp