From 4e68d2b48b54de93e65a19e3e2c7ca90e1db2105 Mon Sep 17 00:00:00 2001 From: finga Date: Mon, 27 May 2024 13:50:18 +0200 Subject: [PATCH] authinfo: Configure the default authinfo file Configure `auth-source` to be per default `~/.authinfo.gpg`. --- .emacs.d/config/base.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/config/base.el b/.emacs.d/config/base.el index 143bdd3..ab9148d 100644 --- a/.emacs.d/config/base.el +++ b/.emacs.d/config/base.el @@ -82,3 +82,7 @@ ;; configure theme (custom-set-variables '(custom-enabled-themes (quote (tango-dark)))) + +;; configur authinfo file +(setq auth-sources + '((:source "~/.authinfo.gpg")))