make dayJob org keybinds for opening todo/slipbox consistent with personal ; add added keybinds for managing org headlines
This commit is contained in:
parent
e0534e89c0
commit
ad5a1b0aea
|
@ -2,9 +2,14 @@
|
|||
; Setup global keys
|
||||
(global-set-key (kbd "C-c l") 'org-store-link)
|
||||
(global-set-key (kbd "C-c a") 'org-agenda)
|
||||
(global-set-key (kbd "C-c s") 'org-schedule)
|
||||
(global-set-key (kbd "C-c c") 'org-capture)
|
||||
(global-set-key (kbd "C-c z") 'org-attach)
|
||||
(global-set-key (kbd "C-c m x") 'org-cut-subtree)
|
||||
(global-set-key (kbd "C-c m r") 'org-archive-subtree)
|
||||
(global-set-key (kbd "C-c m f") 'org-refile)
|
||||
(global-set-key (kbd "C-c m s") 'org-agenda-schedule)
|
||||
(global-set-key (kbd "C-c m d") 'org-agenda-deadline)
|
||||
|
||||
(global-set-key (kbd "C-c d v")
|
||||
(lambda () (interactive) (dired "~/org/Document_Archive"))
|
||||
)
|
||||
|
@ -29,10 +34,10 @@
|
|||
)
|
||||
)
|
||||
(when kmn/is-dayjob
|
||||
(global-set-key (kbd "C-c t")
|
||||
(global-set-key (kbd "C-c d t")
|
||||
(lambda () (interactive) (find-file "~/org/_todo.org"))
|
||||
)
|
||||
(global-set-key (kbd "C-c s")
|
||||
(global-set-key (kbd "C-c d s")
|
||||
(lambda () (interactive) (find-file "~/org/_slipbox.org"))
|
||||
)
|
||||
)
|
||||
|
|
Reference in a new issue