diff --git a/.emacs.d/init.el b/.emacs.d/init.el index a1c921a..f4faa88 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -189,7 +189,7 @@ ("M-N" . org-metadown)) :map org-src-mode-map ("C-z" . org-src-export-to-pdf)) :config - (use-package org-tempo) ; enable org-tempo templates + (use-package org-tempo :demand) ; enable org-tempo templates ;; Make windmove work in org-mode: (add-hook 'org-shiftup-final-hook 'windmove-up) @@ -427,7 +427,7 @@ (global-undo-tree-mode) (setq undo-tree-enable-undo-in-region nil)) -(use-package hydra :ensure +(use-package hydra :ensure :demand :config ;config is in separate file because it is really big (load-file "~/.emacs.d/hydra-defs.el") @@ -438,7 +438,7 @@ ("C-^" . 'hydra-smerge/body)) :bind* ("C-," . 'hydra-mc/body)) ; I like my binding, stop messing with it -(use-package multiple-cursors :ensure) +(use-package multiple-cursors :ensure :demand) (use-package expand-region :ensure :bind ("C-=" . er/expand-region))