mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 10:26:42 +00:00
11 lines
297 B
Bash
11 lines
297 B
Bash
#
|
|
# Emacs
|
|
#
|
|
|
|
if [ -f "/Applications/Emacs.app/Contents/MacOS/Emacs" ]; then
|
|
alias emacs="/Applications/Emacs.app/Contents/MacOS/Emacs -nw"
|
|
fi
|
|
if [ -f "/Applications/Emacs.app/Contents/MacOS/bin/emacsclient" ]; then
|
|
alias emacsclient="/Applications/Emacs.app/Contents/MacOS/bin/emacsclient"
|
|
fi
|