diff options
Diffstat (limited to 'dot_kshrc')
-rw-r--r-- | dot_kshrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,11 +1,15 @@ [ -f /etc/ksh.kshrc ] && . /etc/ksh.kshrc || true -export PPROMPT='<$USER@$HOST:$PWD:!>'"$PS1S" +export PPROMPT='<$USER@$HOST:$PWD:!> '"$PS1S" export PS1=$PPROMPT export HISTFILE="$HOME/.ksh_history" export HISTSIZE=5000 +for common in ${HOME}/.config/sh/*; do + [ -f "${common}" ] && . "${common}" +done + export VISUAL="vim" export EDITOR="$VISUAL" set -o emacs |