From d465a86c9b37d3535e07152bb0d4f95aed3a3bfa Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Fri, 23 Feb 2024 02:28:38 -0500 Subject: [PATCH] fix(emacs): add `s`, `f`, and `dash` packages by default Signed-off-by: Lucas Sta Maria --- .emacs.d/init.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 44f2efe..5e591b5 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -15,6 +15,12 @@ (eval-print-last-sexp))) (load bootstrap-file nil 'nomessage)) +;; Elisp +(straight-use-package 's) +(straight-use-package 'f) +(straight-use-package 'dash) + + ;; Completion (straight-use-package 'company) (straight-use-package 'company-box) @@ -74,9 +80,6 @@ (straight-use-package 'eglot) (straight-use-package 'eldoc-box) -;; Misc -(straight-use-package 'dash) - ;; Programming (straight-use-package '(copilot :type git :host github :repo "zerolfx/copilot.el"