aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountainMan <43313373+MountainMan1312@users.noreply.github.com>2023-05-15 00:20:14 -0400
committerMountainMan <43313373+MountainMan1312@users.noreply.github.com>2023-05-15 00:20:14 -0400
commita9f30b2c8f4256c09db49b3eccb9974ff3419cb3 (patch)
treecbaddeb27bc25e96d78dc5dc8dd11d164b3594d5
parentChange variable-width font to DejaVu Sans (diff)
downloadmmosmacs-a9f30b2c8f4256c09db49b3eccb9974ff3419cb3.tar.gz
mmosmacs-a9f30b2c8f4256c09db49b3eccb9974ff3419cb3.tar.bz2
mmosmacs-a9f30b2c8f4256c09db49b3eccb9974ff3419cb3.zip
Add keybind to open agenda file
-rw-r--r--init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/init.el b/init.el
index 8d741de..08af089 100644
--- a/init.el
+++ b/init.el
@@ -590,6 +590,7 @@
590;; am quite forgetful. 590;; am quite forgetful.
591;; --------------------------------- 591;; ---------------------------------
592 592
593
593;; Agenda configuration 594;; Agenda configuration
594(use-package org 595(use-package org
595 :config 596 :config
@@ -625,7 +626,8 @@
625 org-habit-graph-column 60 626 org-habit-graph-column 60
626 org-habit-following-days 1 627 org-habit-following-days 1
627 org-habit-preceding-days 21) 628 org-habit-preceding-days 21)
628 :bind (("C-c a" . org-agenda-list))) 629 :bind (("C-c a" . org-agenda-list)
630 ("C-c n a" . (lambda () (interactive) (find-file "~/kb/agenda.org")))))
629 631
630 632
631;; Update agenda periodically every `mm/refresh-agenda-time-seconds' seconds. 633;; Update agenda periodically every `mm/refresh-agenda-time-seconds' seconds.