diff options
author | noa@gaiwan.org | 2024-06-18 20:37:54 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-18 20:37:54 +0000 |
commit | c8bc957fd236be7774467add99045acaadc34e3b (patch) | |
tree | 3fc5cf6ba288c4611ec5c304f2be9d09c02c7d6e /emacs/init.el | |
parent | 6d8fdb94082fb8bf1f0ed594b8765d9d9448be2f (diff) |
Setup pass(1) support in auth-source
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index eaaa328..1a02446 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -981,3 +981,9 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." "\n\n")) (use-package i-ching :ensure t) + +;; Use pass from auth-source +(require 'auth-source-pass) +(add-to-list 'auth-sources 'password-store) +(auth-source-forget-all-cached) + |