From 9be35b7d7ae6156765a8bd3616b38d529f2722ff Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Sun, 31 Mar 2024 12:13:21 +0200 Subject: Moved .doom.d -> .config/doom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88c71d5..b337211 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,21 +47,21 @@ jobs: - name: Install Doom Emacs run: | - git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.emacs.d - ~/.emacs.d/bin/doom install --no-config --no-env --no-fonts + git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.config/emacs + ~/.config/emacs/bin/doom install --no-config --no-env --no-fonts - name: Sync run: | - cp -r $(realpath .doom.d) $HOME/.doom.d - ~/.emacs.d/bin/doom sync + cp -r $(realpath .config/doom) $HOME/.config/doom + ~/.config/emacs/bin/doom sync - name: Check Doom installation run: | - ~/.emacs.d/bin/doom doctor - test -z "$(~/.emacs.d/bin/doom doctor | grep 'errors!')" + ~/.config/emacs/bin/doom doctor + test -z "$(~/.config/emacs/bin/doom doctor | grep 'errors!')" - name: Try to start Emacs run: | echo "Attempting startup..." - ${EMACS:=emacs} -nw -Q --batch --load $HOME/.emacs.d/early-init.el + ${EMACS:=emacs} -nw -Q --batch --load $HOME/.config/emacs/early-init.el echo "Startup successful" -- cgit v1.2.3