diff options
author | Amin Bandali <bandali@kelar.org> | 2025-02-09 02:09:16 -0500 |
---|---|---|
committer | Amin Bandali <bandali@kelar.org> | 2025-02-09 02:09:16 -0500 |
commit | 99332da43b8324814ca6c1af7f0076f83c8ce233 (patch) | |
tree | aa4e84443aa9be8e1fedf6e61867da43d109c5b7 /.emacs.d/lisp/bandali-essentials.el | |
parent | ec565f9daf3d2af52d83dae9dfbbde4652fd6601 (diff) | |
download | configs-99332da43b8324814ca6c1af7f0076f83c8ce233.tar.gz configs-99332da43b8324814ca6c1af7f0076f83c8ce233.tar.xz configs-99332da43b8324814ca6c1af7f0076f83c8ce233.zip |
Port the rest of my GNU Emacs configuration to use-package
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/lisp/bandali-essentials.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/lisp/bandali-essentials.el b/.emacs.d/lisp/bandali-essentials.el index e233481..ad1e141 100644 --- a/.emacs.d/lisp/bandali-essentials.el +++ b/.emacs.d/lisp/bandali-essentials.el @@ -376,6 +376,9 @@ :hook ((text-mode tex-mode) . auto-fill-mode) :custom + ;; See `bandali-gnus' for my Gnus configuration. + (mail-user-agent 'gnus-user-agent) + (read-mail-command #'gnus) ;; Save what I copy into clipboard from other applications into ;; Emacs' kill-ring, which would allow me to still be able to ;; easily access it in case I kill (cut or copy) something else @@ -426,6 +429,7 @@ (use-package completion-preview ;; :if (package-installed-p 'completion-preview) :if (version<= "30" emacs-version) + :delight " cprev" :bind (:map completion-preview-active-mode-map |