org-roam/README.md

101 lines
3.5 KiB
Markdown
Raw Normal View History

[![License GPL 3][badge-license]](http://www.gnu.org/licenses/gpl-3.0.txt)
[![GitHub Release](https://img.shields.io/github/v/release/org-roam/org-roam)](https://img.shields.io/github/v/release/org-roam/org-roam)
2020-03-23 07:34:21 +00:00
[![MELPA](https://melpa.org/packages/org-roam-badge.svg)](https://melpa.org/#/org-roam)
## Synopsis
2020-02-04 03:33:26 +00:00
Org-roam is a [Roam][roamresearch] replica built on top of the
all-powerful [Org-mode][org].
2020-02-04 03:33:26 +00:00
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.
2020-02-04 03:33:26 +00:00
2020-03-29 18:39:17 +00:00
[@technovangelist](https://github.com/technovangelist/) has produced a video
describing Org-roam and the concepts behind it:
[![Making Connections in your Notes](http://img.youtube.com/vi/Lg61ocfxk3c/0.jpg)](http://www.youtube.com/watch?v=Lg61ocfxk3c "Making Connections in your Notes")
Important links:
- **[Documentation][docs]**
- **[Discourse][discourse]**
2020-05-13 12:19:31 +00:00
- **[Slack][slack]**
2020-03-23 07:34:21 +00:00
2020-02-04 03:33:26 +00:00
## 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.
2020-02-04 03:33:26 +00:00
2020-02-12 07:40:44 +00:00
![img](doc/images/org-roam-graph.gif)
2020-02-04 03:33:26 +00:00
## Installation
2020-03-23 07:34:21 +00:00
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`:
```emacs-lisp
(use-package org-roam
2020-05-13 12:19:31 +00:00
: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-show-graph))
:map org-mode-map
(("C-c n i" . org-roam-insert))))
```
`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.
2020-03-23 07:34:21 +00:00
For more detailed installation and configuration instructions (including for
Doom and Spacemacs users), please see [the
2020-05-13 12:19:31 +00:00
documentation][docs].
2020-03-05 16:19:11 +00:00
## Knowledge Bases using Org-roam
- [Jethro Kuan](https://braindump.jethro.dev/)
([Source](https://github.com/jethrokuan/braindump/tree/master/org))
## Changelog
A changelog is being maintained [here](CHANGELOG.md)
2020-02-04 03:33:26 +00:00
## Contributing
2020-02-12 07:40:44 +00:00
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
2020-02-18 05:43:13 +00:00
request. Please also see [CONTRIBUTING.md](.github/CONTRIBUTING.md).
## License
Copyright © Jethro Kuan and contributors. Distributed under the GNU
General Public License, Version 3
2020-02-04 03:33:26 +00:00
2020-02-12 07:40:44 +00:00
[roamresearch]: https://www.roamresearch.com/
[org]: https://orgmode.org/
[badge-license]: https://img.shields.io/badge/license-GPL_3-green.svg
2020-05-13 12:19:31 +00:00
[docs]: https://org-roam.github.io/org-roam/manual/
[discourse]: https://org-roam.discourse.group/
[slack]: https://join.slack.com/t/orgroam/shared_invite/zt-deoqamys-043YQ~s5Tay3iJ5QRI~Lxg