dotfiles/recipes/emacs

18 lines
344 B
Text
Raw Normal View History

2018-02-22 04:15:49 +00:00
#!/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
2018-02-22 16:43:45 +00:00
if ! [ -d ${HOME}/.emacs.d ]; then
_run "Install .emacs.d" ln -s ${HOME}/dotfiles/.emacs.d ${HOME}/.emacs.d
fi