aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-04-25 17:42:36 -0700
committerGravatar Tom Willemse2021-04-25 17:42:36 -0700
commitef2c7290399c63fd390bb016dfd4dbde60de8b6b (patch)
tree4326e06f7b0b33a171c7cf8924d5eedc24df1f68
parentfeb1e0cc09f56305c73e75235cc7ff1f43581763 (diff)
downloademacs-config-ef2c7290399c63fd390bb016dfd4dbde60de8b6b.tar.gz
emacs-config-ef2c7290399c63fd390bb016dfd4dbde60de8b6b.zip
[oni-core] Use Gnus to read mail
-rw-r--r--oni-core.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/oni-core.el b/oni-core.el
index 0c2aebc..cb047d1 100644
--- a/oni-core.el
+++ b/oni-core.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.0227.153915
+;; Version: 2021.0425.174228
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview)
;; This program is free software; you can redistribute it and/or modify
@@ -142,8 +142,12 @@ _s_: String list"
;; of garbage.
(setq gc-cons-threshold 100000000)
+;;; 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 read-mail-command 'gnus)
+
(setq-default indent-tabs-mode nil)
(setq-default tab-width 4)
(setq-default truncate-lines t)