8 lines
254 B
Bash
8 lines
254 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -x $XDG_CONFIG_HOME/emacs ]; then
|
|
git clone --depth 1 https://github.com/hlissner/doom-emacs $XDG_CONFIG_HOME/emacs
|
|
$XDG_CONFIG_HOME/emacs/bin/doom install "$@"
|
|
else
|
|
echo "fatal: $XDG_CONFIG_HOME/emacs already exists!"
|
|
fi
|