2005-04-22 15:56:32 +02:00
|
|
|
# Login shell profile.
|
|
|
|
|
2013-01-30 15:36:51 +01:00
|
|
|
# Activate emacs keybindings and command line history support
|
|
|
|
set -o emacs
|
2005-04-22 15:56:32 +02:00
|
|
|
|
|
|
|
# Check terminal type.
|
|
|
|
case $TERM in
|
|
|
|
dialup|unknown|network)
|
|
|
|
echo -n "Terminal type? ($TERM) "; read term
|
|
|
|
TERM="${term:-$TERM}"
|
|
|
|
unset term
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Shell configuration.
|
|
|
|
unset EDITOR; . $HOME/.ashrc
|