dotfiles/recipes/emacs

16 lines
289 B
Bash

#!/bin/bash
# Description: GNU Emacs
set -e
case $_PLATFORM in
darwin)
_recipe brew
_brew_tap railwaycat/emacsmacport
_brew emacs-mac --with-modern-icon
;;
linux)
_recipe _apt
_ppa kelleyk/emacs
_apt emacs27
;;
esac