1
0
Fork 0
mirror of https://github.com/correl/dotfiles.git synced 2025-01-06 19:08:52 +00:00
dotfiles/recipes/emacs

20 lines
355 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
;;
arch)
_recipe _arch
_pacman emacs
;;
debian)
_recipe _apt
_ppa kelleyk/emacs
_apt emacs27
;;
esac