mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
20 lines
355 B
Bash
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
|