diff options
author | Case Duckworth | 2022-01-31 00:54:22 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-31 00:54:22 -0600 |
commit | 90e13f3aac8cac7f7c75bccdff69976bea79403d (patch) | |
tree | 992721e984bff542b4fa46e6dabc21038aaf0fe5 | |
parent | Setup bookmark.el (diff) | |
download | emacs-90e13f3aac8cac7f7c75bccdff69976bea79403d.tar.gz emacs-90e13f3aac8cac7f7c75bccdff69976bea79403d.zip |
Add secret-source as an auth-source
TODO: This still needs /lots/ of work.
-rw-r--r-- | init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/init.el b/init.el index ed492e6..280f7e6 100644 --- a/init.el +++ b/init.el | |||
@@ -62,7 +62,9 @@ | |||
62 | (:hook #'+init-add-setup-to-imenu)) | 62 | (:hook #'+init-add-setup-to-imenu)) |
63 | 63 | ||
64 | (setup (:require auth-source) | 64 | (setup (:require auth-source) |
65 | (:option auth-sources (list (private/ "authinfo"))) | 65 | (:option auth-sources (list 'default ; secret-source |
66 | "secrets:default" | ||
67 | (private/ "authinfo"))) | ||
66 | (:with-mode authinfo-mode | 68 | (:with-mode authinfo-mode |
67 | (:local-set truncate-lines t))) | 69 | (:local-set truncate-lines t))) |
68 | 70 | ||