mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
17 lines
344 B
Bash
17 lines
344 B
Bash
#!/bin/bash
|
|
set +e
|
|
|
|
_recipe brew
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_brew emacs --with-cocoa --with-librsvg --with-imagemagick@6
|
|
;;
|
|
linux)
|
|
_brew emacs --with-librsvg --with-imagemagick@6
|
|
;;
|
|
esac
|
|
|
|
if ! [ -d ${HOME}/.emacs.d ]; then
|
|
_run "Install .emacs.d" ln -s ${HOME}/dotfiles/.emacs.d ${HOME}/.emacs.d
|
|
fi
|