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 -