+when emacs in server mode, load stuff greedily

When emacs is launched standalone, it makes sense to optimise towards
smaller load times through lazy loading. However, when Emacs is in
server or daemon there's no point holding back. Just load everything
most of the necessary stuff such that on first emacsclient launch we
have everything available for use.
This commit is contained in:
2020-08-09 17:36:01 +01:00
parent b21fc53e29
commit 9f3bd324b9

View File

@@ -19,6 +19,11 @@
(+literate/compile-config))
(+literate/load-config)
(when (daemonp)
(require 'org)
(require 'notmuch)
(require 'eglot)
(require 'ivy))
;; Programming
(custom-set-variables