8 lines
175 B
Bash
Executable file
8 lines
175 B
Bash
Executable file
#!/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
|