Add org-roam-ui

This commit is contained in:
Nathan McCarty 2022-10-03 18:04:56 -04:00
parent 30e61f5afd
commit ef5031c402
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 17 additions and 0 deletions

View File

@ -413,6 +413,20 @@ Here we:
'(("d" "default" entry "* %<%I:%M %p>: %?" '(("d" "default" entry "* %<%I:%M %p>: %?"
:if-new (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n"))))) :if-new (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n")))))
#+end_src #+end_src
And we want the nice fancy [[https://github.com/org-roam/org-roam-ui][ui]], so go ahead and set that up
#+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
** org-protocol-capture-html ** org-protocol-capture-html
[[https://github.com/alphapapa/org-protocol-capture-html][Capture webpages]] really nice like [[https://github.com/alphapapa/org-protocol-capture-html][Capture webpages]] really nice like
#+begin_src emacs-lisp #+begin_src emacs-lisp

View File

@ -64,3 +64,6 @@
(package! org-superstar) (package! org-superstar)
(package! alert) (package! alert)
(package! anki-editor) (package! anki-editor)
(unpin! org-roam)
(package! websocket)
(package! org-roam-ui)