mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 09:06:44 +00:00
It was time to split the environment related stuff out to ~/.zshenv, leaving my ~/.zshrc file specifically for setup of interactive shells.
13 lines
358 B
Bash
13 lines
358 B
Bash
#
|
|
# Emacs
|
|
#
|
|
|
|
# macOS 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
|