nixos/system/home/scripts/shell/sync-emacs.sh

15 lines
427 B
Bash
Raw Normal View History

# Clone ~/.config/emacs/ if it doesn't exist
2024-10-11 11:46:52 +01:00
EMACS_DIR="$HOME/.emacs.d"
if [ ! -d "$EMACS_DIR" ]; then
git clone "https://git.xenia.me.uk/pixelifytica/emacs.git" "$EMACS_DIR"
fi
(
cd "$EMACS_DIR" || exit 1
# Pull changes by fast-forwarding only
git pull --ff --ff-only
# Update submodules for local packages
git submodule update --init --recursive
# Install and update extensions
make install
)