2018-02-22 04:15:49 +00:00
|
|
|
#!/bin/bash
|
2018-04-12 18:07:33 +00:00
|
|
|
# Description: GNU Emacs
|
2018-02-27 05:15:14 +00:00
|
|
|
set -e
|
2018-02-22 04:15:49 +00:00
|
|
|
|
|
|
|
_recipe brew
|
|
|
|
|
|
|
|
case $_PLATFORM in
|
|
|
|
darwin)
|
2018-04-23 17:49:26 +00:00
|
|
|
_brew_tap railwaycat/emacsmacport
|
|
|
|
_brew emacs-mac --with-modern-icon
|
2018-02-22 04:15:49 +00:00
|
|
|
;;
|
|
|
|
linux)
|
2018-02-23 21:17:52 +00:00
|
|
|
_recipe _apt
|
|
|
|
_ppa ubuntu-elisp/ppa
|
|
|
|
_apt emacs25
|
2018-02-22 04:15:49 +00:00
|
|
|
;;
|
|
|
|
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
|