From 676ccc82fd79c6361584380efec1351c7c4e20ee Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 20 Sep 2022 19:13:40 -0400 Subject: [PATCH] Bump for emacs --- emacs/makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/emacs/makefile b/emacs/makefile index c8f2009..6b8e649 100644 --- a/emacs/makefile +++ b/emacs/makefile @@ -4,15 +4,15 @@ EMACSD := ~/.emacs.d # Doom Config DOOMD := ~/.doom.d -DOOM_URL := https://github.com/hlissner/doom-emacs +DOOM_URL := https://github.com/doomemacs/doomemacs include ../lib/shared.mk up: setup if [ -e $(EMACSD)/bin/doom ] ; then - ~/.emacs.d/bin/doom --yes sync \ + ~/.emacs.d/bin/doom sync \ ; $(report) "doom sync" - ~/.emacs.d/bin/doom --yes purge \ + ~/.emacs.d/bin/doom purge \ ; $(report) "doom purge" else $(report) debug "doom not setup, so not updating." @@ -38,11 +38,10 @@ setup: doom_init: if [ ! -e $(EMACSD) ] ; then git clone $(DOOM_URL) $(EMACSD) - ~/.emacs.d/bin/doom --yes install \ + ~/.emacs.d/bin/doom install \ ; $(report) "doom install" - ~/.emacs.d/bin/doom --yes compile ':core' \ + ~/.emacs.d/bin/doom compile \ ; $(report) "doom core compile" else $(report) debug "emacsd already exists. Skipping" fi -