summaryrefslogtreecommitdiffhomepage
path: root/org.org
diff options
context:
space:
mode:
Diffstat (limited to 'org.org')
-rw-r--r--org.org14
1 files changed, 10 insertions, 4 deletions
diff --git a/org.org b/org.org
index 725049d..0e300ec 100644
--- a/org.org
+++ b/org.org
@@ -211,8 +211,15 @@
* Notes
#+begin_src emacs-lisp
(use-package jao-org-notes
- :config (jao-org-notes-setup "n")
- :bind (("C-c n" . jao-org-notes-consult)
+ :config
+ (jao-org-notes-setup "n")
+ (major-mode-hydra-define+ org-mode ()
+ ("Notes"
+ (("i" jao-org-notes-insert-link "insert link")
+ ("o" jao-org-notes-open "find and open note")
+ ("c" jao-org-notes-open-or-create "open or create note")
+ ("v" jao-org-notes-backlinks "show backlinks"))))
+ :bind (("C-c n" . jao-org-notes-open-or-create)
("C-c N" . jao-org-notes-open)))
#+end_src
* Links
@@ -225,8 +232,7 @@
(require 'ol-docview nil t)
(require 'ol-info nil t)
- (setq org-link-abbrev-alist
- '(("jao.io" "https://jao.io/")))
+ (setq org-link-abbrev-alist '(("jao.io" "https://jao.io/")))
#+end_src
* jao-org
#+begin_src emacs-lisp