diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -53,8 +53,8 @@ Then something along the following to your `config.el` (use-package! org-roam-ui :after org-roam ;; or :after org - :hook -;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have + :hook +;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have ;; a hookable mode anymore, you're advised to pick something yourself ;; if you don't care about startup time, use ;; :hook (after-init . org-roam-ui-mode) @@ -75,8 +75,8 @@ We recommend only loading org-roam-ui after loading org(-roam) as starting the s :straight (:host github :repo "org-roam/org-roam-ui" :branch "main" :files ("*.el" "out")) :after org-roam - :hook -;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have + :hook +;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have ;; a hookable mode anymore, you're advised to pick something yourself ;; if you don't care about startup time, use ;; :hook (after-init . org-roam-ui-mode) @@ -88,7 +88,6 @@ We recommend only loading org-roam-ui after loading org(-roam) as starting the s ``` - ## Usage Use `M-x org-roam-ui-mode RET` to enable the global mode. @@ -176,6 +175,7 @@ You can optionally provide `(base1 . "#XXXXXX")` arguments after the last one to ### Open on start By default, org-roam-ui will try to open itself in your default browser. To disable this, set + ```emacs-lisp (setq org-roam-ui-open-on-start nil) ``` |