info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: use-package :custom causes gnus to load


From: Bartosz Kaczyński
Subject: Re: use-package :custom causes gnus to load
Date: Sat, 28 Oct 2023 11:37:29 +0000

Juan José García-Ripoll <juanjose.garciaripoll@gmail.com> writes:

> Hi,

Hi,

>
> I have a stupid peeve with my current configuration, which relies on
> `use-package` to defer loading of `gnus`, but still configuring relevant
> parameters.
>
> I have found that all of the :custom statements are fine, except for
>
> :custom
> (gnus-select-method '(nnnil ""))
>
> It seems this custom statement triggers loading of gnus. I found this
> can be used by replacing this statement with
>
> :config
> (setq gnus-select-method '(nnnil ""))
>
> However, it is less than satisfactory.

Why is that?

(use-package gnus
  :init
  (add-hook 'gnus-group-mode-hook 'gnus-topic-mode)

  :config
  (setq gnus-select-method '(nnnil ""))
    (setq gnus-secondary-select-methods
        '((nntp "news.gmane.io")
  --snip--

I don't have any issues with this configuration.

>
> Any clue about this?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]