Compare commits
2 Commits
5ad6429442
...
800e4ed4d1
| Author | SHA1 | Date | |
|---|---|---|---|
| 800e4ed4d1 | |||
| 844b0baf0f |
12
init.el
12
init.el
@ -4,16 +4,16 @@
|
|||||||
|
|
||||||
;; This is the main entry point for Emacs to load this configuration. The
|
;; This is the main entry point for Emacs to load this configuration. The
|
||||||
;; structure is roughly as follows:
|
;; structure is roughly as follows:
|
||||||
;; * first comes some preliminary setup, mostly setting up `package’;
|
;; - first comes some preliminary setup, mostly setting up `package’;
|
||||||
;; * the main activation of the configuration is done in the function
|
;; - the main activation of the configuration is done in the function
|
||||||
;; `db/run-init’, which is installed in `after-init-hook’; it is thus run
|
;; `db/run-init’, which is installed in `after-init-hook’; it is thus run
|
||||||
;; after init.el has been read
|
;; after init.el has been read
|
||||||
;; * then comes setting up all the packages that can be used by this
|
;; - then comes setting up all the packages that can be used by this
|
||||||
;; configuration; most of these packages are not loaded however, and only
|
;; configuration; most of these packages are not loaded however, and only
|
||||||
;; configuration hooks are installed (using `use-package’); this way a user
|
;; configuration hooks are installed (using `use-package’); this way a user
|
||||||
;; can choose in `db/run-init’ which configuration to activate without
|
;; can choose in `db/run-init’ which configuration to activate without
|
||||||
;; changing much of the rest of the file.
|
;; changing much of the rest of the file.
|
||||||
;; * this file also introduces a new customization group `personal-settings’
|
;; - this file also introduces a new customization group `personal-settings’
|
||||||
;; containing variables (mostly file paths) that must be set to enable some
|
;; containing variables (mostly file paths) that must be set to enable some
|
||||||
;; of the provided functionality.
|
;; of the provided functionality.
|
||||||
|
|
||||||
@ -1858,9 +1858,9 @@
|
|||||||
;; Use Gnus’ registry; doing this too early conflicts with `gnus'
|
;; Use Gnus’ registry; doing this too early conflicts with `gnus'
|
||||||
;; calling `gnus-shutdown', which in turn calls
|
;; calling `gnus-shutdown', which in turn calls
|
||||||
;; `gnus-registry-clear', leaving us with an empty registry upon
|
;; `gnus-registry-clear', leaving us with an empty registry upon
|
||||||
;; startup. So let's call this initialization right after startup,
|
;; startup. So let's call this initialization right before startup,
|
||||||
;; that should be fine.
|
;; that should be fine.
|
||||||
(add-hook 'gnus-started-hook
|
(add-hook 'gnus-before-startup-hook
|
||||||
#'gnus-registry-initialize)
|
#'gnus-registry-initialize)
|
||||||
|
|
||||||
;; Automatic encryption if all necessary keys are present
|
;; Automatic encryption if all necessary keys are present
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user