mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 03:00:05 +00:00
17 lines
282 B
Bash
17 lines
282 B
Bash
#!/bin/bash
|
|
# Description: GNU Emacs
|
|
set -e
|
|
|
|
_recipe brew
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_brew_tap railwaycat/emacsmacport
|
|
_brew emacs-mac --with-modern-icon
|
|
;;
|
|
linux)
|
|
_recipe _apt
|
|
_ppa kelleyk/emacs
|
|
_apt emacs26
|
|
;;
|
|
esac
|