Setup org-roam-ui

This commit is contained in:
Antoine Martin 2022-04-11 16:31:33 +02:00
parent 1dac032fe9
commit a4142bdad4
2 changed files with 21 additions and 0 deletions

View file

@ -35,6 +35,7 @@
- [[#save-all-org-buffers-shortcut][Save all org buffers shortcut]]
- [[#roam][Roam]]
- [[#roam-directory][Roam Directory]]
- [[#org-roam-ui][org-roam-ui]]
- [[#export-backends][Export backends]]
- [[#doom-specific][Doom specific]]
- [[#magit][Magit]]
@ -437,6 +438,22 @@ First, set a directory where =org-roam= will index things.
(setq org-roam-directory (expand-file-name "notes/" org-directory))
#+END_SRC
*** org-roam-ui
Setup [[https://github.com/org-roam/org-roam-ui][org-roam-ui]]
#+begin_src emacs-lisp
(use-package! websocket
:after org-roam)
(use-package! org-roam-ui
:after org-roam
:config (setq org-roam-ui-sync-theme t
org-roam-ui-follow t
org-roam-ui-update-on-save t
org-roam-ui-open-on-start t))
#+end_src
** Export backends
Sometimes I need to export an Org subtree to a file, which is quite easy with

View file

@ -59,3 +59,7 @@
(package! magit-delta
:recipe (:host github :repo "dandavison/magit-delta")
:pin "5fc7dbddcfacfe46d3fd876172ad02a9ab6ac616")
(package! org-roam-ui
:recipe (:host github :repo "org-roam/org-roam-ui")
:pin "9474a254390b1e42488a1801fed5826b32a8030b")