mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 07:06:40 +00:00
18 lines
442 B
Bash
18 lines
442 B
Bash
#
|
|
# Emacs
|
|
#
|
|
|
|
# OS X systems.
|
|
if [ -f "/Applications/Emacs.app/Contents/MacOS/Emacs" ]; then
|
|
alias emacs="env TERM=screen-24bit /Applications/Emacs.app/Contents/MacOS/Emacs -nw"
|
|
fi
|
|
|
|
if [ -f "/Applications/Emacs.app/Contents/MacOS/bin/emacsclient" ]; then
|
|
alias emacsclient="env TERM=screen-24bit /Applications/Emacs.app/Contents/MacOS/bin/emacsclient"
|
|
fi
|
|
|
|
# *nix systems.
|
|
if [ -d "/opt/emacs/bin" ]; then
|
|
path_append "/opt/emacs/bin"
|
|
fi
|