merge two memexes

This commit is contained in:
2026-03-29 15:25:18 -04:00
parent 5b4d490fcb
commit 4652163b7b
4 changed files with 8577 additions and 8583 deletions

8567
inbox.org

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -138,7 +138,7 @@ For straight.el to pick up before package.el
(require 'ob-tangle) (require 'ob-tangle)
;; Specify the input file and the output directory ;; Specify the input file and the output directory
(defvar config-org-file "~/org/6_system/emacs.org") (defvar config-org-file "~/memex/system/emacs.org")
(defvar config-el-file "~/.emacs.d/config.el") (defvar config-el-file "~/.emacs.d/config.el")
(defvar org-use-property-inheritance t) (defvar org-use-property-inheritance t)
@@ -350,7 +350,7 @@ Also, since we add a minor mode string (it might be useful sometimes), currently
#+end_src #+end_src
#+begin_src elisp :tangle ~/.emacs.d/config.el #+begin_src elisp :tangle ~/.emacs.d/config.el
(defvar org-directory (concat (getenv "HOME") "/org/")) (defvar org-directory (concat (getenv "HOME") "/memex/"))
#+end_src #+end_src
******* TODO [5/6] Looks ******* TODO [5/6] Looks
@@ -479,8 +479,8 @@ Also, since we add a minor mode string (it might be useful sometimes), currently
#+begin_src elisp #+begin_src elisp
(setq org-agenda-files (list (setq org-agenda-files (list
(concat org-directory "/0_inbox/inbox.org") (concat org-directory "/inbox.org")
(concat org-directory "/0_inbox/org-gtd-tasks.org") (concat org-directory "/org-gtd-tasks.org")
) )
) )
#+end_src #+end_src
@@ -697,7 +697,7 @@ Allow refiling to agenda files, nine headers deep, either in current buffer or i
:END: :END:
#+begin_src elisp :tangle ~/.emacs.d/config.el #+begin_src elisp :tangle ~/.emacs.d/config.el
(defvar org-default-notes-file (concat org-directory "/0_inbox/inbox.org")) (defvar org-default-notes-file (concat org-directory "inbox.org"))
#+end_src #+end_src
******** DONE [4/4] Org-protocol ******** DONE [4/4] Org-protocol
@@ -745,12 +745,12 @@ And finally, here are the capture templates for org-protocol captures.
(defvar org-capture-templates '( (defvar org-capture-templates '(
("p" "Protocol" ("p" "Protocol"
entry entry
(file "0_inbox/inbox.org") (file "inbox.org")
"* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n\n%?" "* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n\n%?"
) )
("L" "Protocol Link" ("L" "Protocol Link"
entry entry
(file "0_inbox/inbox.org") (file "inbox.org")
"* %? [[%:link][%:description]]\n:PROPERTIES:\n:TITLE: %:description\n:URI: %:link\n:CREATED: %U\n:END:" "* %? [[%:link][%:description]]\n:PROPERTIES:\n:TITLE: %:description\n:URI: %:link\n:CREATED: %U\n:END:"
:prepend nil :prepend nil
:empty-lines 1 :empty-lines 1
@@ -915,8 +915,8 @@ This will create clickable titles, create "TITLE", " URL", and "CREATED" propert
#+end_src #+end_src
#+begin_src elisp #+begin_src elisp
(setq org-roam-directory (concat org-directory "/1_thinking")) (setq org-roam-directory (concat org-directory "notes"))
(setq org-roam-dailies-directory (concat org-directory "/0_inbox/daily")) (setq org-roam-dailies-directory (concat org-directory "daily"))
#+end_src #+end_src
#+begin_src elisp :tangle no #+begin_src elisp :tangle no
@@ -1279,7 +1279,7 @@ Org has a powerful exporting feature. Lets select the various formats to expo
******* DONE org-attach ******* DONE org-attach
#+begin_src elisp :tangle ~/.emacs.d/config.el #+begin_src elisp :tangle ~/.emacs.d/config.el
(defvar org-attach-id-dir (concat org-directory "/library")) (defvar org-attach-id-dir (concat org-directory "attachments"))
#+end_src #+end_src
******* DONE Enable shell scripting support in org-babel ******* DONE Enable shell scripting support in org-babel
@@ -2127,7 +2127,7 @@ On package.el, it is a manual install so far
** Org-agent ** Org-agent
#+begin_src elisp #+begin_src elisp
;; 1. Manually add the path to your load-path ;; 1. Manually add the path to your load-path
(add-to-list 'load-path "~/memex-amero/projects/org-agent/src") (add-to-list 'load-path "~/memex/projects/org-agent/src")
;; 2. Explicitly load the file ;; 2. Explicitly load the file
(require 'org-agent) (require 'org-agent)