diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -210,6 +210,9 @@ (use-package magit :bind ("C-x g" . magit-status)) +;; Integration with pass password manager +(use-package password-store) + ;; Git enhancement (use-package git-gutter :config @@ -309,8 +312,10 @@ (use-package org-gcal :bind (:map org-agenda-mode-map ("g" . org-gcal-fetch)) :config + (setq org-gcal-secret (password-store-get "EmacsSecrets/org-gcal-secret") + org-gcal-client-id (password-store-get "EmacsSecrets/org-gcal-client-id")) (setq org-gcal-client-id "685624394721-5bsfpo57ri2rcc7k6f8sbg12gjrs7dot.apps.googleusercontent.com" - org-gcal-client-secret "IAZ8j86uAPyolUnPGJxfieGO" + org-gcal-client-secret org-gcal-secret org-gcal-file-alist '(("matthew.lemon@gmail.com" . "~/Nextcloud/org/calendar/work-cal.org") ("12panp3nqdbmm9df4if9jigigo@group.calendar.google.com" . "~/Nextcloud/org/calendar/home-cal.org")))) |