aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d/init.el
diff options
context:
space:
mode:
authorThomas Schneider <qsx@chaotikum.eu>2024-08-26 18:08:34 +0200
committerThomas Schneider <qsx@chaotikum.eu>2024-08-26 18:08:34 +0200
commit15cc068fa55486da690dda819c87a49f2a98b807 (patch)
tree3d7371dbb92f2be405aaa1565bd5a28999806c26 /dot.emacs.d/init.el
parent8c35ef85706c58b57824ee739630d9e1fa77b9e3 (diff)
Emacs: use-package: Default to deferring package loading
Diffstat (limited to 'dot.emacs.d/init.el')
-rw-r--r--dot.emacs.d/init.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 8db3573..97b1c6b 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -14,7 +14,8 @@
(package-install 'use-package))
(require 'use-package)
(setq use-package-always-ensure t
- use-package-verbose t)
+ use-package-verbose t
+ use-package-always-defer t)
(let ((--backup-directory (locate-user-emacs-file "backups")))
(unless (file-exists-p --backup-directory)
@@ -164,7 +165,7 @@
:custom (avy-keys '(?c ?t ?i ?e ?n ?r ?s ?g)))
(use-package helm
- :defer nil
+ :demand t
:bind-keymap ("C-c h" . helm-command-map)
:bind (("M-x" . #'helm-M-x)
("s-x" . #'execute-extended-command)