summaryrefslogtreecommitdiffstatshomepage
path: root/readme.org
diff options
context:
space:
mode:
authorGravatar Nicolas Petton2021-02-21 18:24:41 +0100
committerGravatar Nicolas Petton2021-02-21 18:34:44 +0100
commit250d699e1f91c79d7b8481106291198c148d82bb (patch)
treeb47e5e2ece11ad3641788555f11167ca2eab6642 /readme.org
downloadnroam-250d699e1f91c79d7b8481106291198c148d82bb.tar.gz
nroam-250d699e1f91c79d7b8481106291198c148d82bb.zip
Initial commit
Diffstat (limited to 'readme.org')
-rw-r--r--readme.org28
1 files changed, 28 insertions, 0 deletions
diff --git a/readme.org b/readme.org
new file mode 100644
index 0000000..c8a9ec2
--- /dev/null
+++ b/readme.org
@@ -0,0 +1,28 @@
+* nroam
+
+nroam is a supplementary package for [[https://github.com/org-roam/org-roam][org-roam]] that replaces the backlink side buffer of Org-roam. Instead, it displays org-roam backlinks at the end of org-roam buffers.
+
+* Rationale
+
+One of the ideas behing nroam is to remove the friction and effort it takes to consult backlinks. I consider backlinks to be a very central piece of information about a note. Backlinks can even be the most important content of a note, for instance when using page links as tags.
+
+It is easy to miss backlinks when they are not always visible with the main content of a note. The side buffer will not always be open, and even if it is, the information it contains is visually far away from the note you're looking at.
+
+By making them an integral part of the org buffer, backlinks also become more powerful. You could for instance make a sparse tree—see =org-sparse-tree= — to filter the contents of a note and its backlinks at the same time.
+
+* Setup
+
+To setup nroam for all =org-mode= buffer, evaluate the following:
+
+#+begin_src elisp
+(add-hook 'org-mode-hook #'nroam-mode)
+#+end_src
+
+* Warning
+
+This package is in its infancy. Be careful when using it as it modifies your =org-mode= buffers—it should not modify your files though. Backup your data often.
+
+* Performance
+
+At the moment no caching is done when crawling source files for backlinks so there could be performance issues with very large number of org files as a lot of buffers could have to be open to crawl backlink content.
+