X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=blobdiff_plain;f=emacs_el%2Fconfiguration%2Forg-mode-configuration.el;h=854b8ffb86f6ba105730d07ca1aaa15d9286d1bb;hp=2fe7367545978db89ef0b9e870e1988145c2a581;hb=551b16ff412a0204e2a86aa60aea2e91e7c3b9a4;hpb=882829608a07efe5a41aaccdcea687fb331f8920 diff --git a/emacs_el/configuration/org-mode-configuration.el b/emacs_el/configuration/org-mode-configuration.el index 2fe7367..854b8ff 100644 --- a/emacs_el/configuration/org-mode-configuration.el +++ b/emacs_el/configuration/org-mode-configuration.el @@ -125,6 +125,8 @@ "* MEETING with %? :MEETING:\n%U" :clock-in t :clock-resume t) ("p" "Phone call" entry (file "~/projects/notes/refile.org") "* PHONE %? :PHONE:\n%U" :clock-in t :clock-resume t) + ("J" "job" entry (file "~/projects/notes/refile.org") + "* TODO Apply for %a%? :job:\n%U\n" :clock-in t :clock-resume t) ("h" "Habit" entry (file "~/projects/notes/refile.org") "* NEXT %?\n%U\n%a\nSCHEDULED: %(format-time-string \"<%Y-%m-%d %a .+1d/3d>\")\n:PROPERTIES:\n:STYLE: habit\n:REPEAT_TO_STATE: NEXT\n:END:\n") ) @@ -163,6 +165,12 @@ (global-set-key (kbd " n") 'bh/toggle-next-task-display) (global-set-key (kbd " w") 'widen) +; change the outline mode prefix from C-c @ to C-c C-2 +(setq outline-minor-mode-prefix "C-c C-2") +(add-hook 'outline-minor-mode-hook + (lambda () (local-set-key (kbd "C-c C-2") + outline-mode-prefix-map))) + (global-set-key (kbd " I") 'bh/punch-in) (global-set-key (kbd " O") 'bh/punch-out)