mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 03:00:11 +00:00
16 lines
289 B
Bash
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
|