25 lines
1,018 B
EmacsLisp
25 lines
1,018 B
EmacsLisp
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
|
; 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 t")
|
||
|
(lambda () (interactive) (find-file "~/org/_todo.org"))
|
||
|
)
|
||
|
(global-set-key (kbd "C-c n")
|
||
|
(lambda () (interactive) (find-file "~/org/_index.org"))
|
||
|
)
|
||
|
(global-set-key (kbd "C-c h")
|
||
|
(lambda () (interactive) (find-file "~/org/health/_health.org"))
|
||
|
)
|
||
|
(global-set-key (kbd "C-c p")
|
||
|
(lambda () (interactive) (find-file "~/org/photography/_photography.org"))
|
||
|
)
|
||
|
(global-set-key (kbd "C-c r")
|
||
|
(lambda () (interactive) (find-file "~/org/culinary/_culinary.org"))
|
||
|
)
|
||
|
(global-set-key (kbd "C-c v")
|
||
|
(lambda () (interactive) (dired "~/org/Document_Archive"))
|
||
|
)
|