Compare commits

...

3 Commits

Author SHA1 Message Date
Daniel - 86879ec84e
Update assignment to obsolete BBDB variable 2023-10-05 10:27:54 +02:00
Daniel - 435a9f52a9
Ignore further user data files in main .emacs.d directory
Files of the `transient` package are now kept under `private/`.
2023-10-05 10:26:51 +02:00
Daniel - a287d2af01
Increase Gnus' large-group limit
200 is not enough, let's try 500.
2023-10-05 10:21:47 +02:00
2 changed files with 7 additions and 4 deletions

2
.gitignore vendored
View File

@ -36,7 +36,5 @@
/semanticdb/
/server/server
/session.*
/speed-type/*
/tramp
/transient/history.el

View File

@ -1334,6 +1334,11 @@ point to the beginning of buffer first."
:commands (page-break-lines-mode)
:diminish page-break-lines-mode)
(use-package transient
:init (setq transient-levels-file (expand-file-name "transient/levels.el" emacs-d-userdata)
transient-values-file (expand-file-name "transient/values.el" emacs-d-userdata)
transient-history-file (expand-file-name "transient/history.el" emacs-d-userdata)))
;; * Mail
@ -1356,7 +1361,7 @@ point to the beginning of buffer first."
bbdb-save)
:init (setq bbdb-completion-display-record nil
bbdb-complete-mail-allow-cycling t
bbdb-mua-auto-update-p 'query
bbdb-mua-auto-action 'query
bbdb-default-country "Germany")
:config (progn
(add-hook 'message-setup-hook 'bbdb-mail-aliases)
@ -1399,7 +1404,7 @@ point to the beginning of buffer first."
gnus-subscribe-newsgroup-method 'gnus-subscribe-killed
gnus-group-list-inactive-groups t
gnus-suppress-duplicates nil
gnus-large-newsgroup 200
gnus-large-newsgroup 500
nnmail-expiry-wait 7
nnmail-cache-accepted-message-ids t
gnus-summary-next-group-on-exit nil