dotfiles/config/doom/reload.sh

10 lines
186 B
Bash
Raw Normal View History

2021-09-07 23:11:32 +02:00
#!/bin/sh
DOOM="$HOME/.emacs.d"
if [ ! -d "$DOOM" ]; then
git clone https://github.com/hlissner/doom-emacs.git "$DOOM"
2021-09-08 17:24:16 +02:00
sleep 0.5
2021-09-07 23:11:32 +02:00
"$DOOM/bin/doom -y install"
fi
"$DOOM/bin/doom sync"