2018-02-21 23:15:49 -05:00
|
|
|
#!/bin/bash
|
2018-04-12 14:07:33 -04:00
|
|
|
# Description: GNU Emacs
|
2018-02-27 00:15:14 -05:00
|
|
|
set -e
|
2018-02-21 23:15:49 -05:00
|
|
|
|
|
|
|
_recipe brew
|
|
|
|
|
|
|
|
case $_PLATFORM in
|
|
|
|
darwin)
|
2018-04-23 13:49:26 -04:00
|
|
|
_brew_tap railwaycat/emacsmacport
|
|
|
|
_brew emacs-mac --with-modern-icon
|
2018-02-21 23:15:49 -05:00
|
|
|
;;
|
|
|
|
linux)
|
2018-02-23 16:17:52 -05:00
|
|
|
_recipe _apt
|
|
|
|
_ppa ubuntu-elisp/ppa
|
|
|
|
_apt emacs25
|
2018-02-21 23:15:49 -05:00
|
|
|
;;
|
|
|
|
esac
|
2018-02-22 11:43:45 -05:00
|
|
|
|
|
|
|
if ! [ -d ${HOME}/.emacs.d ]; then
|
|
|
|
_run "Install .emacs.d" ln -s ${HOME}/dotfiles/.emacs.d ${HOME}/.emacs.d
|
|
|
|
fi
|