make dayJob org keybinds for opening todo/slipbox consistent with personal ; add added keybinds for managing org headlines

This commit is contained in:
KemoNine 2023-04-15 12:33:48 -04:00
parent e0534e89c0
commit ad5a1b0aea
1 changed files with 8 additions and 3 deletions

View File

@ -2,9 +2,14 @@
; Setup global keys ; Setup global keys
(global-set-key (kbd "C-c l") 'org-store-link) (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 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 c") 'org-capture)
(global-set-key (kbd "C-c z") 'org-attach) (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") (global-set-key (kbd "C-c d v")
(lambda () (interactive) (dired "~/org/Document_Archive")) (lambda () (interactive) (dired "~/org/Document_Archive"))
) )
@ -29,10 +34,10 @@
) )
) )
(when kmn/is-dayjob (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")) (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")) (lambda () (interactive) (find-file "~/org/_slipbox.org"))
) )
) )