- Delete deprecated system/ configuration files - Update projects/dotemacs/modules/ with reorganized config - Add .opencode/ directory for agent state - Clean up attachments and unused documentation files
1.9 KiB
1.9 KiB
Org-mode Capture Templates for Atomic Notes (Zettelkasten) & GTD
- Atomic Notes (Zettelkasten) - Fleeting Note
- Atomic Notes (Zettelkasten) - Literature Note
- Atomic Notes (Zettelkasten) - Permanent Note
- GTD - Inbox Capture
- Org-Capture Configuration Outline
Atomic Notes (Zettelkasten) - Fleeting Note
TODO Write Template for Fleeting Note
Atomic Notes (Zettelkasten) - Literature Note
Template
Literature Note: %?
Summary: %?
Key Insights:
Atomic Notes (Zettelkasten) - Permanent Note
Template
Permanent Note: %?
Concept: %?
References:
GTD - Inbox Capture
Template
TODO %?
- State "TODO" from "" [%U]
%i
%a
Org-Capture Configuration Outline
Emacs Lisp Snippet
(setq org-capture-templates
'(("z" "Atomic Notes (Zettelkasten) (Captures to Daily)")
("zf" "Fleeting Note" entry (file+olp+datetree (expand-file-name (format "%s/%%<%%Y-%%m-%%d>.org" (getenv "MEMEX_DAILY"))))
"* Fleeting Note: %?\n :PROPERTIES:\n :ID: %u\n :CREATED: %U\n :END:\n\n %i")
("zl" "Draft Literature Note" entry (file+olp+datetree (expand-file-name (format "%s/%%<%%Y-%%m-%%d>.org" (getenv "MEMEX_DAILY"))))
"* Literature Note: %?\n :PROPERTIES:\n :ID: %u\n :CREATED: %U\n :AUTHOR: \n :SOURCE: \n :END:\n\n *Summary:*\n %?\n\n *Key Insights:*\n - ")
("zp" "Draft Permanent Note" entry (file+olp+datetree (expand-file-name (format "%s/%%<%%Y-%%m-%%d>.org" (getenv "MEMEX_DAILY"))))
"* Permanent Note: %?\n :PROPERTIES:\n :ID: %u\n :CREATED: %U\n :LINKS: \n :END:\n\n *Concept:*\n %?\n\n *References:*\n - ")
("t" "GTD - Task / Inbox" entry (file (getenv "MEMEX_INBOX"))
"* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:\n :LOGBOOK:\n - State \"TODO\" from \"\" [%U]\n :END:\n\n %i\n %a")))