15 lines
452 B
Bash
Executable file
15 lines
452 B
Bash
Executable file
# Clone ~/.config/emacs/ if it doesn't exist
|
|
EMACS_DIR="${XDG_CONFIG_DIR:=$HOME/.config}/emacs/"
|
|
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
|
|
)
|