X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=emacs_el%2Fconfiguration%2Fdon-hydra.el;h=64c7363ab6acecd7436d890e0ff3132026260489;hb=42a6eb3e198d2e451e9fae51fb016da9652a8157;hp=6c83042a9ea83c5171520111cc81b59965f32c3e;hpb=eb4fe2071df89e8371faa205ea80b0ec4c0e75e9;p=lib.git diff --git a/emacs_el/configuration/don-hydra.el b/emacs_el/configuration/don-hydra.el index 6c83042..64c7363 100644 --- a/emacs_el/configuration/don-hydra.el +++ b/emacs_el/configuration/don-hydra.el @@ -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)