merge two memexes
This commit is contained in:
@@ -138,7 +138,7 @@ For straight.el to pick up before package.el
|
||||
(require 'ob-tangle)
|
||||
|
||||
;; 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 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
|
||||
|
||||
#+begin_src elisp :tangle ~/.emacs.d/config.el
|
||||
(defvar org-directory (concat (getenv "HOME") "/org/"))
|
||||
(defvar org-directory (concat (getenv "HOME") "/memex/"))
|
||||
#+end_src
|
||||
|
||||
******* 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
|
||||
(setq org-agenda-files (list
|
||||
(concat org-directory "/0_inbox/inbox.org")
|
||||
(concat org-directory "/0_inbox/org-gtd-tasks.org")
|
||||
(concat org-directory "/inbox.org")
|
||||
(concat org-directory "/org-gtd-tasks.org")
|
||||
)
|
||||
)
|
||||
#+end_src
|
||||
@@ -697,7 +697,7 @@ Allow refiling to agenda files, nine headers deep, either in current buffer or i
|
||||
:END:
|
||||
|
||||
#+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
|
||||
|
||||
******** DONE [4/4] Org-protocol
|
||||
@@ -745,12 +745,12 @@ And finally, here are the capture templates for org-protocol captures.
|
||||
(defvar org-capture-templates '(
|
||||
("p" "Protocol"
|
||||
entry
|
||||
(file "0_inbox/inbox.org")
|
||||
(file "inbox.org")
|
||||
"* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n\n%?"
|
||||
)
|
||||
("L" "Protocol Link"
|
||||
entry
|
||||
(file "0_inbox/inbox.org")
|
||||
(file "inbox.org")
|
||||
"* %? [[%:link][%:description]]\n:PROPERTIES:\n:TITLE: %:description\n:URI: %:link\n:CREATED: %U\n:END:"
|
||||
:prepend nil
|
||||
:empty-lines 1
|
||||
@@ -915,8 +915,8 @@ This will create clickable titles, create "TITLE", " URL", and "CREATED" propert
|
||||
#+end_src
|
||||
|
||||
#+begin_src elisp
|
||||
(setq org-roam-directory (concat org-directory "/1_thinking"))
|
||||
(setq org-roam-dailies-directory (concat org-directory "/0_inbox/daily"))
|
||||
(setq org-roam-directory (concat org-directory "notes"))
|
||||
(setq org-roam-dailies-directory (concat org-directory "daily"))
|
||||
#+end_src
|
||||
|
||||
#+begin_src elisp :tangle no
|
||||
@@ -1279,7 +1279,7 @@ Org has a powerful exporting feature. Let’s select the various formats to expo
|
||||
******* DONE org-attach
|
||||
|
||||
#+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
|
||||
|
||||
******* DONE Enable shell scripting support in org-babel
|
||||
@@ -2127,7 +2127,7 @@ On package.el, it is a manual install so far
|
||||
** Org-agent
|
||||
#+begin_src elisp
|
||||
;; 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
|
||||
(require 'org-agent)
|
||||
|
||||
Reference in New Issue
Block a user