aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org/oni-org.el
diff options
context:
space:
mode:
Diffstat (limited to 'oni-org/oni-org.el')
-rw-r--r--oni-org/oni-org.el23
1 files changed, 15 insertions, 8 deletions
diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el
index db11606..e865594 100644
--- a/oni-org/oni-org.el
+++ b/oni-org/oni-org.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2020.0203.221615
-;; Package-Requires: (oni-yasnippet oni-alert org-plus-contrib org-bullets hydra)
+;; Version: 2020.0305.224948
+;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -164,12 +164,19 @@ After running it once remove it from `org-capture-after-finalize-hook'."
(org-set-tag-faces 'org-tag-faces org-tag-faces))
;;;###autoload(autoload 'oni-hydra-org/body "oni-org")
-(defhydra oni-hydra-org (:color blue)
- "Org"
- ("l" org-store-link "Store link")
- ("a" org-agenda "Agenda")
- ("c" org-capture "Capture")
- ("b" org-switchb "Switch to org buffer"))
+(defhydra oni-hydra-org (:color teal :hint nil)
+ "
+^Org^
+^^-----------------------
+_a_: Show Agenda
+_c_: Capture new heading
+_l_: Store link
+_b_: Switch to org buffer
+"
+ ("l" org-store-link)
+ ("a" org-agenda)
+ ("c" org-capture)
+ ("b" org-switchb))
(setq org-default-notes-file
(oni-org-expand-to-home "documents/gtd/inbox.org"))