blob: 9a52a09815b519e199315cd1ac6fc5df1b5f0c02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[ -f /etc/ksh.kshrc ] && . /etc/ksh.kshrc || true
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"
export VISUAL="vim"
export EDITOR="$VISUAL"
set -o emacs
|