From dd00b9be3bb2c773515ece66d7954f79c1c7ed83 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 14 Jan 2020 17:15:21 -0500 Subject: [PATCH] Ensure that secrets from pass can be read during init --- emacs/init.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index 176a928..3498bdf 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -345,7 +345,9 @@ Interfacing with Pass, the "standard Unix password manager". This should also be password-store-copy) :config (setq password-store-password-length 20) - (leader-def-key "P" 'password-store-copy)) + :init + (leader-def-key "P" 'password-store-copy) + (epa-file-enable)) (use-package pass :if (executable-find "pass")