You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Jethro Kuan 220f395c1f
(feat): add org-roam-find-file-immediate (#852)
6 years ago
.github (internal): Exclude org-roam-compat.el from linting (#713) 6 years ago
doc (feat): add 'first-directory option for org-roam-tag-sources (#851) 6 years ago
tests (perf): use sqlite transactions, and GC less (#847) 6 years ago
.dir-locals.el (feat): Switch to a minor-mode for the dev-suite (#805) 6 years ago
.gitignore (docs): track landing page (#620) 6 years ago
.readthedocs.yml add readthedocs.yml 6 years ago
BACKERS.md (internal): add BACKERS.md (#702) 6 years ago
CHANGELOG.md (bugfix): fix tag extraction for symlinked directories (#857) 6 years ago
LICENSE Add GPL License 6 years ago
Makefile (ci): make multi-page manual (#618) 6 years ago
README.md (docs): update docs link in README (#850) 6 years ago
default.mk (internal): use Make and Org to build manual (#546) 6 years ago
makem.sh (internal): make lint errors fail CI, and disable spellcheck during linting (#561) 6 years ago
org-roam-buffer.el (feat): org-roam-find-file-function customization (#807) 6 years ago
org-roam-capture.el (feat): add customizable org-roam-title-to-slug-function (#833) 6 years ago
org-roam-compat.el (release): Org-roam v1.2.0 (#802) 6 years ago
org-roam-completion.el (release): Org-roam v1.2.0 (#802) 6 years ago
org-roam-dailies.el (release): Org-roam v1.2.0 (#802) 6 years ago
org-roam-db.el (feat): warn on duplicate IDs and refs rather than fail (#854) 6 years ago
org-roam-dev.el (feat): Switch to a minor-mode for the dev-suite (#805) 6 years ago
org-roam-doctor.el (release): Org-roam v1.2.0 (#802) 6 years ago
org-roam-graph.el (release): Org-roam v1.2.0 (#802) 6 years ago
org-roam-macs.el (release): Org-roam v1.2.0 (#802) 6 years ago
org-roam-protocol.el (feat): add customizable org-roam-title-to-slug-function (#833) 6 years ago
org-roam.el (feat): add org-roam-find-file-immediate (#852) 6 years ago

README.md

License GPL 3 GitHub Release MELPA

Synopsis

Org-roam is a Roam replica built on top of the all-powerful Org-mode.

Org-roam is a solution for effortless non-hierarchical note-taking with Org-mode. With Org-roam, notes flow naturally, making note-taking fun and easy. Org-roam should also work as a plug-and-play solution for anyone already using Org-mode for their personal wiki.

Org-roam aims to implement the core features of Roam, leveraging the mature ecosystem around Org-mode where possible. Eventually, we hope to further introduce features enabled by the Emacs ecosystem.

@technovangelist has produced a video describing Org-roam and the concepts behind it:

Making Connections in your Notes

Important links:

A Preview

Here's a screencast of Org-roam. The org-roam-buffer (window on the right) shows backlinks for the active Org-roam buffer (window on the left), as well as the surrounding content in the backlink file. The database is built once, and updated incrementally. The graph is generated from the link structure, and can be used to navigate to the respective files.

img

Installation

You can install org-roam using package.el:

M-x package-install RET org-roam RET

Here's a sample configuration with using use-package:

(use-package org-roam
      :ensure t
      :hook
      (after-init . org-roam-mode)
      :custom
      (org-roam-directory "/path/to/org-files/")
      :bind (:map org-roam-mode-map
              (("C-c n l" . org-roam)
               ("C-c n f" . org-roam-find-file)
               ("C-c n g" . org-roam-graph-show))
              :map org-mode-map
              (("C-c n i" . org-roam-insert))
              (("C-c n I" . org-roam-insert-immediate))))

org-roam-graph by default expects to find the dot executable from the graphviz package in the exec-path. Ensure graphviz is installed and found if you want to use this feature or customize your configuration for org-roam-graph to use a different tool.

For more detailed installation and configuration instructions (including for Doom and Spacemacs users), please see the documentation.

Knowledge Bases using Org-roam

Changelog

A changelog is being maintained here

Contributing

To report bugs and suggest new feature use the issue tracker. If you have some code which you would like to be merged, then open a pull request. Please also see CONTRIBUTING.md.

License

Copyright © Jethro Kuan and contributors. Distributed under the GNU General Public License, Version 3