1.6 KiB
1.6 KiB
Org-roam
Org-roam ATTACH
attachment:_20200711_110701logo.png
Non-hierarchical note-taking in Emacs 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 Building a Second Brain.
Documentation
Integration with Org-Journal
Org-roam can be integrated with Org-Journal for handier, more featureful daily note-taking than the built-in functionality to do the same.
The following configuration will instruct Org-Journal to create separate note files for each day in the Org-roam directory:
(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"))