43 lines
1.6 KiB
Org Mode
43 lines
1.6 KiB
Org Mode
#+title: Org-roam
|
|
#+roam_tags: software
|
|
|
|
* Org-roam :ATTACH:
|
|
:PROPERTIES:
|
|
:ID: 39ff2649-fad7-475d-97ac-c5c013701541
|
|
:END:
|
|
|
|
#+ATTR_ORG: :width 200
|
|
[[attachment:_20200711_110701logo.png]]
|
|
|
|
https://www.orgroam.com/
|
|
|
|
Non-hierarchical note-taking in Emacs [[file:20200710214307-org_mode.org][Org Mode]]. Appears to be most useful when
|
|
notes are narrowly focused and linked together like a wiki, as it primarily
|
|
handles tracking and caching links between notes and facilitating navigating
|
|
between them. Useful for [[file:20200710193741-building_a_second_brain.org][Building a Second Brain]].
|
|
#+ATTR_ORG: :width 800
|
|
[[attachment:_20200711_110935screenshot.png]]
|
|
|
|
* Documentation
|
|
- [[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]]
|
|
|
|
* Integration with Org-Journal
|
|
|
|
Org-roam can be integrated with [[file:20200711111826-org_journal.org][Org-Journal]] for handier, more featureful daily
|
|
note-taking than the built-in functionality to do the same.
|
|
|
|
The following configuration will instruct [[file:20200711111826-org_journal.org][Org-Journal]] to create separate note
|
|
files for each day in the Org-roam directory:
|
|
|
|
#+begin_src emacs-lisp :eval never :expors code
|
|
(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
|