Add org-roam-ui
This commit is contained in:
parent
30e61f5afd
commit
ef5031c402
14
config.org
14
config.org
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue