From 965a94b8282767cea66d459b5e7d7751a69b773d Mon Sep 17 00:00:00 2001 From: rearman Date: Wed, 14 Dec 2022 08:02:05 -0500 Subject: [PATCH] Add settings and binding for agenda --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index 468bb24..1ba2ed0 100644 --- a/init.el +++ b/init.el @@ -96,6 +96,8 @@ org-startup-indented t org-catch-invisible-edits 'show org-directory "~/org" + org-agenda-files '("~/org/") + org-refile-targets '((nil :maxlevel . 9) (org-agenda-files :maxlevel . 9)) org-default-notes-file (concat org-directory "/notes.org") org-service-notes-file (concat org-directory "/service.org") org-capture-templates '(("t" "Default TODO" entry (file+datetree org-default-notes-file) @@ -295,6 +297,7 @@ bar normally, hbar in read-only, and box in overwrite. Stolen from https://emac ;; BINDINGS ;; USER SPACE +(global-set-key (kbd "C-c a") 'org-agenda) (global-set-key (kbd "C-c b") 'buffer-menu-other-window) (global-set-key (kbd "C-c c") 'org-capture) (global-set-key (kbd "C-c i") 'edit-init) -- 2.39.5