roam/20200710141321-org_roam.org

47 lines
1.6 KiB
Org Mode
Raw Permalink Normal View History

2021-07-29 22:51:04 +00:00
:PROPERTIES:
:ID: 0567a35c-3afb-4ed5-a9ec-47425c5d6f06
:END:
2020-07-10 22:32:10 +00:00
#+title: Org-roam
2021-07-29 22:51:04 +00:00
#+filetags: :software:
2020-07-10 22:32:10 +00:00
2020-07-11 15:42:12 +00:00
* Org-roam :ATTACH:
:PROPERTIES:
:ID: 39ff2649-fad7-475d-97ac-c5c013701541
:END:
2020-07-11 01:50:41 +00:00
2020-07-11 15:42:12 +00:00
#+ATTR_ORG: :width 200
[[attachment:_20200711_110701logo.png]]
https://www.orgroam.com/
2021-07-29 22:51:04 +00:00
Non-hierarchical note-taking in Emacs [[id:4d7dffe3-4af4-41d0-85a2-270a20593c8d][Org Mode]]. Appears to be most useful when
2020-07-11 15:42:12 +00:00
notes are narrowly focused and linked together like a wiki, as it primarily
handles tracking and caching links between notes and facilitating navigating
2021-07-29 22:51:04 +00:00
between them. Useful for [[id:9da11b5b-b30c-4d0f-8e54-1389fb3276e0][Building a Second Brain]].
2020-07-11 15:42:12 +00:00
#+ATTR_ORG: :width 800
[[attachment:_20200711_110935screenshot.png]]
2020-07-10 22:32:10 +00:00
* Documentation
2020-07-11 01:50:41 +00:00
- [[https://www.orgroam.com/manual/][The Org-roam manual]]
- [[https://org-roam.readthedocs.io/en/master/tour/][A tour of Org-roam]]
- Blog post: [[https://blog.jethro.dev/posts/introducing_org_roam/][Introducing Org Roam]]
2020-07-11 15:42:12 +00:00
* Integration with Org-Journal
2021-07-29 22:51:04 +00:00
Org-roam can be integrated with [[id:8308db48-fa3e-48b0-a962-ae27aaa1924f][Org-Journal]] for handier, more featureful daily
2020-07-11 15:42:12 +00:00
note-taking than the built-in functionality to do the same.
2021-07-29 22:51:04 +00:00
The following configuration will instruct [[id:8308db48-fa3e-48b0-a962-ae27aaa1924f][Org-Journal]] to create separate note
2020-07-11 15:42:12 +00:00
files for each day in the Org-roam directory:
2021-06-27 22:07:12 +00:00
#+begin_src emacs-lisp :eval never :exports code
2020-07-11 15:42:12 +00:00
(use-package org-journal
:bind
("C-c n j" . org-journal-new-entry)
:custom
(org-journal-date-prefix "#+title: ")
(org-journal-file-format "%Y-%m-%d.org")
(org-journal-dir "/path/to/org-roam-files/")
(org-journal-date-format "%A, %d %B %Y"))
#+end_src