aboutsummaryrefslogtreecommitdiffstats
path: root/oni-core.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-07-01 18:00:13 -0700
committerGravatar Tom Willemse2021-07-01 18:00:13 -0700
commit7ac2b35a33f4e4015c9e8f67411ddc520500ab00 (patch)
tree2978d34c3070cc3c588cba2d92a8062ebac5bd8a /oni-core.el
parent554aad49b5e78a593c32e0f8a76f6a512727c814 (diff)
downloademacs-config-7ac2b35a33f4e4015c9e8f67411ddc520500ab00.tar.gz
emacs-config-7ac2b35a33f4e4015c9e8f67411ddc520500ab00.zip
[oni-core] Add Login keyring and remove ‘.netrc’ auth sources
Diffstat (limited to 'oni-core.el')
-rw-r--r--oni-core.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/oni-core.el b/oni-core.el
index 351798a..7ec4ae9 100644
--- a/oni-core.el
+++ b/oni-core.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.0621.234138
+;; Version: 2021.0701.142845
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard)
;; This program is free software; you can redistribute it and/or modify
@@ -157,7 +157,10 @@ _s_: String list"
;;; Remove ~/.authinfo from the auth sources since it’s an unencripted file and
;;; I don’t want to accidentally store anything in there.
-(setq auth-sources (remove "~/.authinfo" auth-sources))
+(setq auth-sources
+ (cons "secrets:Login"
+ (remove "~/.netrc"
+ (remove "~/.authinfo" auth-sources))))
(setq read-mail-command 'gnus)