summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-11-11 13:50:48 -0500
committerAmin Bandali <bandali@gnu.org>2018-11-11 13:50:48 -0500
commitf97a01bda8181c0871428ca3bbfbe0381d779224 (patch)
treedfc788cf0a66eb4de02b6f8e196af857b5c644c8 /init.org
parent4368fb4ca309bde3ab3a790731f181f636995f65 (diff)
downloadconfigs-f97a01bda8181c0871428ca3bbfbe0381d779224.tar.gz
configs-f97a01bda8181c0871428ca3bbfbe0381d779224.tar.xz
configs-f97a01bda8181c0871428ca3bbfbe0381d779224.zip
[emacs] adjust lean-mode and highlight-indent-guides load delays
Diffstat (limited to '')
-rw-r--r--init.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.org b/init.org
index 289b22b..60708bb 100644
--- a/init.org
+++ b/init.org
@@ -1155,7 +1155,7 @@ TODO: break this giant source block down into individual org sections.
#+begin_src emacs-lisp
(eval-when-compile (defvar lean-mode-map))
(use-package lean-mode
- :defer 2
+ :defer 1
:bind (:map lean-mode-map
("S-SPC" . company-complete))
:config
@@ -1645,7 +1645,7 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
#+begin_src emacs-lisp
(use-package highlight-indent-guides
- :demand t
+ :defer 2
:hook ((prog-mode . highlight-indent-guides-mode)
;; (org-mode . highlight-indent-guides-mode)
)