Add key-bindings I absolutely need from org-mode-crate
I am too used to these key-bindings - `C-c t` for `org-todo` - `C-<f11>` for `org-clock-goto`
This commit is contained in:
parent
2efdcefd60
commit
395225fedd
2 changed files with 10 additions and 0 deletions
|
@ -3758,6 +3758,9 @@ the capture phase ([[#h:f8f06938-0dfe-45c3-b4cf-996d36cba82d][The =unravel-org.e
|
|||
;;;; refile, todo
|
||||
(use-package org
|
||||
:ensure nil
|
||||
:bind
|
||||
( :map org-mode-map
|
||||
("C-c t" . org-todo))
|
||||
:config
|
||||
(setq org-refile-targets
|
||||
'((org-agenda-files . (:maxlevel . 2))
|
||||
|
@ -3890,6 +3893,8 @@ mistakes or figure out intent in the absence of further clarification
|
|||
;;; org-clock
|
||||
(use-package org-clock
|
||||
:ensure nil
|
||||
:bind
|
||||
("C-<f11>" . org-clock-goto)
|
||||
:config
|
||||
(setq org-clock-history-length 20)
|
||||
(setq org-clock-in-resume t)
|
||||
|
|
|
@ -131,6 +131,9 @@
|
|||
;;;; refile, todo
|
||||
(use-package org
|
||||
:ensure nil
|
||||
:bind
|
||||
( :map org-mode-map
|
||||
("C-c t" . org-todo))
|
||||
:config
|
||||
(setq org-refile-targets
|
||||
'((org-agenda-files . (:maxlevel . 2))
|
||||
|
@ -217,6 +220,8 @@
|
|||
;;; org-clock
|
||||
(use-package org-clock
|
||||
:ensure nil
|
||||
:bind
|
||||
("C-<f11>" . org-clock-goto)
|
||||
:config
|
||||
(setq org-clock-history-length 20)
|
||||
(setq org-clock-in-resume t)
|
||||
|
|
Loading…
Reference in a new issue