From 5f278ab2771438bb97b59a3af5d7a15004139a89 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 15 Jan 2021 01:33:59 +0000 Subject: [PATCH] fix(projects): add missing dependency for all-the-icons --- modules/projects/siren-all-the-icons.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/projects/siren-all-the-icons.el b/modules/projects/siren-all-the-icons.el index b521031..e19f868 100644 --- a/modules/projects/siren-all-the-icons.el +++ b/modules/projects/siren-all-the-icons.el @@ -6,7 +6,12 @@ ;;; Code: -(use-package all-the-icons) +;; Required by all-the-icons +(use-package memoize) + +(use-package all-the-icons + :after memoize + :if window-system) (provide 'siren-all-the-icons) ;;; siren-all-the-icons.el ends here