9 lines
175 B
Bash
9 lines
175 B
Bash
|
#!/bin/sh
|
||
|
DOOM="$HOME/.emacs.d"
|
||
|
if [ ! -d "$DOOM" ]; then
|
||
|
git clone https://github.com/hlissner/doom-emacs.git "$DOOM"
|
||
|
"$DOOM/bin/doom -y install"
|
||
|
fi
|
||
|
|
||
|
"$DOOM/bin/doom sync"
|