Add `:demand t` to fix loading treemacs-evil package

It appears that 29c78ce changed `:defer t` to be the default for
use-package, and that previously the `treemacs` and
`treemacs-projectile` packages in treemacs/packages.el specified `:defer
t`, but *not* `treemacs-evil`.  Restoring `:demand t` (previously the
default) to `treemacs-evil` appears to fix #10422.
This commit is contained in:
kyren 2018-03-03 06:48:31 -05:00 committed by bmag
parent f84ab9af8f
commit 02a5a44ab7
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@
(defun treemacs/init-treemacs-evil ()
(use-package treemacs-evil
:demand t
:after treemacs
:if (memq dotspacemacs-editing-style '(vim hybrid))))