From 996cb232174417a316da395762e522492b9036ca Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 11 Oct 2024 11:46:52 +0100 Subject: [PATCH] Move default Emacs directory for esync --- system/home/scripts/shell/esync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/home/scripts/shell/esync.sh b/system/home/scripts/shell/esync.sh index 59ac5b1b..d410bbf2 100755 --- a/system/home/scripts/shell/esync.sh +++ b/system/home/scripts/shell/esync.sh @@ -1,5 +1,5 @@ # Clone ~/.config/emacs/ if it doesn't exist -EMACS_DIR="${XDG_CONFIG_DIR:=$HOME/.config}/emacs/" +EMACS_DIR="$HOME/.emacs.d" if [ ! -d "$EMACS_DIR" ]; then git clone "https://git.xenia.me.uk/pixelifytica/emacs.git" "$EMACS_DIR" fi