]> git.donarmstrong.com Git - lib.git/blobdiff - emacs_el/configuration/don-hydra.el
fix missing ) for org-mode
[lib.git] / emacs_el / configuration / don-hydra.el
index 6c83042a9ea83c5171520111cc81b59965f32c3e..64c7363ab6acecd7436d890e0ff3132026260489 100644 (file)
@@ -1,11 +1,14 @@
 
 (require 'hydra)
+(require 'outline)
 
 ;; org mode files
 (defhydra my/hydra-orgmodes (:color blue :hint nil)
   "
 _n_: notes _c_: chaim _w_: wildman _o_: ool
 _u_: uddin _s_: steve _r_: refile  _f_: fh    
+_p_: read papers      _R_: paper notes
+_h_: hpcbio
 _q_: quit
 _z_: quit
 "
@@ -17,6 +20,9 @@ _z_: quit
   ("f" (find-file "~/projects/org-notes/fh.org"))
   ("s" (find-file "~/projects/org-notes/sndservers.org"))
   ("r" (find-file "~/projects/org-notes/refile.org"))
+  ("p" (find-file "~/projects/research/papers_to_read.org"))
+  ("R" (find-file "~/projects/research/paper_notes.org"))
+  ("h" (find-file "~/projects/org-notes/hpcbio.org"))
   ("q" nil "quit")
   ("z" nil "quit")
   )
@@ -59,3 +65,6 @@ _d_: subtree
   ("z" nil "leave"))
 
 (global-set-key (kbd "C-c #") 'my/hydra-outline/body) ; by example
+(global-set-key (kbd "C-c 3") 'my/hydra-outline/body) ; by example
+
+(provide 'don-hydra)