diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-15 19:32:58 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-15 19:32:58 +0800 |
commit | fd64d068d2dc7222466ebc3b317774184d54ba6e (patch) | |
tree | 1e64659543205e39ec64abae2ce3762da4db1920 | |
parent | d613bf5d042401b84472a9e8a259b329b1929d74 (diff) | |
download | dotfiles-fd64d068d2dc7222466ebc3b317774184d54ba6e.tar.bz2 |
spacemacs: Force install 'evil-leader' package
XXX: for unknown reason, spacemacs suddenly regard 'evil-leader' package as an
orphan and delete it on startup!
-rw-r--r-- | _spacemacs.d/init.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 8ee388c..ef7765b 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -126,7 +126,11 @@ ;; wrapped in a layer. If you need some configuration for these ;; packages, then consider creating a layer. You can also put the ;; configuration in `dotspacemacs/user-config'. - dotspacemacs-additional-packages '() + dotspacemacs-additional-packages + '( + ;; XXX: spacemacs regard `evil-leader' as orphan package, unknown! + evil-leader + ) ;; A list of packages that cannot be updated. dotspacemacs-frozen-packages '() ;; List of packages that will not be installed or loaded. |