mirror of
https://github.com/org-roam/org-roam
synced 2025-08-31 14:43:32 -05:00
15 lines
326 B
Org Mode
15 lines
326 B
Org Mode
* Org-roam
|
|
|
|
Rudimentary Roam replica in org-mode. Dependent on deft being setup properly.
|
|
|
|
** Usage
|
|
|
|
#+begin_src emacs-lisp
|
|
(use-package org-roam
|
|
:after deft org
|
|
:straight (:host "github" :repo "jethrokuan/org-roam")
|
|
:bind
|
|
("C-c n l" . org-roam-get-linked-files)
|
|
("C-c n i" . org-roam-insert))
|
|
#+end_src
|