diff --git a/emacs/init.org b/emacs/init.org index c8f011a..ddc3e55 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -1233,13 +1233,17 @@ Integrate Google calendar with org-mode: org-gcal-client-secret (password-store-get "lola-org-gcal-client-secret") org-gcal-file-alist `(("jeremydormitzer@lola.com" . ,(get-calendar-file "lola-gcal.org")) ("jeremy.dormitzer@gmail.com" . ,(get-calendar-file "personal-gcal.org")) - ("lut2o2moohg6qkdsto1qfq7th4@group.calendar.google.com" . ,(get-calendar-file "j-n-gcal.org")))) - (add-hook 'org-agenda-mode-hook #'org-gcal-fetch) - (defun org-agenda-redo-and-fetch-gcal (&optional all) - (interactive "P") - (let ((cb (if all #'org-agenda-redo-all #'org-agenda-redo))) - (deferred:nextc (org-gcal-fetch) cb))) - (general-def 'motion org-agenda-mode-map "gr" #'org-agenda-redo-and-fetch-gcal)) + ("lut2o2moohg6qkdsto1qfq7th4@group.calendar.google.com" . ,(get-calendar-file "j-n-gcal.org"))) + org-gcal-notify-p nil)) + + (add-hook 'org-agenda-mode-hook #'org-gcal-fetch) + + (defun org-agenda-redo-and-fetch-gcal (&optional all) + (interactive "P") + (let ((cb (if all #'org-agenda-redo-all #'org-agenda-redo))) + (deferred:nextc (org-gcal-fetch) cb))) + + (general-def '(normal motion) org-agenda-mode-map "gr" #'org-agenda-redo-and-fetch-gcal) #+END_SRC * Projectile #+BEGIN_SRC emacs-lisp