From efdca867baa27d5f9a61e68ad8b818cff3b21516 Mon Sep 17 00:00:00 2001 From: zdm <zdm@cock.li> Date: Mon, 8 Feb 2021 03:10:41 -0700 Subject: [PATCH] remove cloning of secondary repo as others-utils is now local --- init.el | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/init.el b/init.el index 70f56c6..0e467f0 100644 --- a/init.el +++ b/init.el @@ -93,14 +93,9 @@ ;;; Utilities -(defvar user-others-utils-list - (mapcar (lambda (util) (concat user-others-utils util)) - '("emacsredux.el" "fuco1.el"))) - -(unless (file-exists-p (car user-others-utils-list)) - (magit-call-git "clone" "https://git.lain.church/zdm/others-utils" (expand-file-name user-others-utils))) - -(mapc 'load user-others-utils-list) +(mapc (lambda (util) + (load (expand-file-name (concat user-others-utils util)))) + '("emacsredux.el" "fuco1.el")) (defalias '/sudo 'emacsredux-sudo-edit)