diff options
author | Amin Bandali <bandali@gnu.org> | 2019-05-12 00:39:37 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-05-12 00:40:07 -0400 |
commit | f485f78e207f950ad1c9fa139bbb13fcc7c3118b (patch) | |
tree | b071c86b682b42366e0346d55f490e273d4996a9 | |
parent | 390afd8273f376e80e2eaeae8501c886cd6f288e (diff) | |
download | configs-f485f78e207f950ad1c9fa139bbb13fcc7c3118b.tar.gz configs-f485f78e207f950ad1c9fa139bbb13fcc7c3118b.tar.xz configs-f485f78e207f950ad1c9fa139bbb13fcc7c3118b.zip |
emacs: gnus: don’t destroy other windows
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 49df725..22b5c29 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1701,6 +1701,10 @@ For disabling the behaviour for certain buffers and/or modes." :config (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)")) +(use-feature gnus-win + :config + (setq gnus-use-full-window nil)) + (use-feature mm-decode :config (setq mm-discouraged-alternatives '("text/html" "text/richtext"))) |