diff options
Diffstat (limited to 'dot_kshrc')
-rw-r--r-- | dot_kshrc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,12 +1,14 @@ [ -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 -[ -f "${HOME}/.config/sh/xdg-base-dirs" ] && . "${HOME}/.config/sh/xdg-base-dirs" +for common in ${HOME}/.config/sh/*; do + [ -f "${common}" ] && . "${common}" +done export VISUAL="vim" export EDITOR="$VISUAL" |