diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 9684b05d..e469a49d 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -1477,7 +1477,8 @@ I don't have any use for this now that I use frames mode, but its an interesting #+END_SRC ** stream #+BEGIN_SRC emacs-lisp -(use-package stream) +(use-package stream + :defer t) #+END_SRC ** tile #+BEGIN_SRC emacs-lisp @@ -1700,7 +1701,7 @@ I use helm for almost all emacs completion (progn (use-package helm-org :ensure nil - :defer 1 + :defer 5 :config (progn (setq helm-split-window-default-side 'same) @@ -1732,7 +1733,6 @@ I use helm for almost all emacs completion (setq helm-ag-always-set-extra-option nil))) (helm-mode 1))) #+END_SRC -[[(helm split window)][Ensure that helm buffers are started in the window that currently holds the focus]] ** helm-projectile #+BEGIN_SRC emacs-lisp (use-package helm-projectile @@ -4065,6 +4065,7 @@ crux-reopen-as-root-mode makes it so that any file owned by root will automatica ** anzu #+BEGIN_SRC emacs-lisp (use-package anzu + :defer 3 :config (progn (global-anzu-mode +1) @@ -4169,6 +4170,7 @@ I had to disable this mode because something that it does messes with coding set ** recentf #+BEGIN_SRC emacs-lisp (use-package recentf + :defer 1 :config (progn (setq recentf-max-saved-items 1000 @@ -4724,7 +4726,7 @@ Ensure all themes that I use are installed: ** all-the-icons #+BEGIN_SRC emacs-lisp (use-package all-the-icons - :demand t) + :defer 5) #+END_SRC ** spaceline *** Disable sRGB colorspace to make powerline separators work diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index f6190eaf..258bc8a1 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -26,6 +26,7 @@ ;; Without this, org can behave very strangely (use-package org + :defer t :init (progn ;; Taken from https://github.com/raxod502/radian/blob/master/radian-emacs/radian-org.el