Couldn't use ORUI when offline, did I miss something? #282
Unanswered
suliveevil
asked this question in
Q&A
Replies: 2 comments
-
org-roam setting (use-package org-roam
;; :defer 1
:after org
:bind (
("C-c n a" . org-roam-alias-add)
("C-c n c" . org-roam-capture)
("C-c n f" . org-roam-node-find)
("C-c n g" . org-roam-graph)
("C-c n i" . org-roam-node-insert)
("C-c n j" . org-roam-dailies-capture-today) ;; Dailies
("C-c n l" . org-roam-buffer-toggle)
("C-c n o" . org-id-get-create)
("C-c n t" . org-roam-tag-add)
)
:config
(setq org-roam-completion-everywhere t)
(setq org-roam-directory "~/org-roam")
(setq org-roam-db-location "~/org-roam/org-roam.db")
(setq org-roam-file-extensions '("org" "md")) ;; enable Org-roam for markdown
;; (setq org-roam-node-display-template "${title:50} ${tags:30}")
(setq org-roam-node-display-template
(concat "${title:*} "
(propertize "${tags:10}" 'face 'org-tag)))
(require 'org-roam-protocol) ;; org-roam-protocol
(org-roam-db-autosync-mode 1) ;; if md-roam installed, move to md-roam config
) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Safari couldn't open |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Just a few minutes ago, I opened ORUI without network connections, it didn't work, did I miss something?
Beta Was this translation helpful? Give feedback.
All reactions