From 4142a26d0922eab7c2dc771b9002996ef6f12862 Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Fri, 2 Aug 2024 11:39:46 +0200 Subject: [PATCH] make org-gcal config use custom --- init.org | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/init.org b/init.org index 5ca67b0..bda569c 100644 --- a/init.org +++ b/init.org @@ -34,7 +34,7 @@ It is possible there are more so probably the most recent one is the one to use. - [[https://github.com/jwiegley/use-package][GitHub repo for use-package]] - [[https://github.com/jwiegley/dot-emacs/blob/master/init.org][John Wiegley's .emacs file]] - [[https://github.com/TheBB/dotemacs/blob/master/init.el][Eivind Fonn's init.el]] -- + * First Things First *** Make tangled file read-only @@ -1025,14 +1025,15 @@ Here is a snapshot of the keybindings dd <2024-07-30 Tue>. ;; configure support for google calendar (use-package org-gcal :ensure t - :defer 10 - :init - (setq - org-gcal-client-id (auth-source-pass-get 'secret "snamellit/org-gcal-client") - org-gcal-client-secret (auth-source-pass-get "id" "snamellit/org-gcal-client") - org-gcal-fetch-file-alist '(("pti@snamellit.com" . "~/org/schedule.org")))) + :custom + (org-gcal-client-id (auth-source-pass-get 'secret "snamellit/org-gcal-client")) + (org-gcal-client-secret (auth-source-pass-get "id" "snamellit/org-gcal-client")) + (org-gcal-fetch-file-alist '(("pti@snamellit.com" . "~/org/schedule.org"))) + :commands (org-gcal-sync org-gcal-fetch) ) #+END_SRC +#+RESULTS: + **** Org Jira Integration #+BEGIN_SRC emacs-lisp