1
0
Fork 0
mirror of https://github.com/correl/dotfiles.git synced 2025-03-20 01:09:19 -09:00
dotfiles/recipes/emacs

22 lines
401 B
Text
Raw Normal View History

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)
_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