2017-03-17 22:36:31 +00:00
|
|
|
# Make emacs the default editor, default to non-gui mode.
|
2017-05-26 15:53:03 +00:00
|
|
|
# On OS X, skip this, since emacs will be installed locally through
|
|
|
|
# homebrew.
|
|
|
|
if [ $(uname -a | cut -f 1 -d ' ') != 'Darwin' ]; then
|
|
|
|
alias emacs="/usr/bin/emacs -nw"
|
|
|
|
export EDITOR="/usr/bin/emacs -nw"
|
|
|
|
fi
|