kshrc: run .ksh_local if we have it

This commit is contained in:
Aaron Bieber 2021-02-11 06:07:59 -07:00
parent c93dcea0e1
commit b4403e11a0

4
.kshrc
View File

@ -42,6 +42,10 @@ alias got='env EDITOR=nvim got'
# the q prompt auto-loads the git-prompt extension # the q prompt auto-loads the git-prompt extension
set_prompt q set_prompt q
if [ -x ~/.ksh_local ]; then
. ~/.ksh_local
fi
if [ -x ~/.po ]; then if [ -x ~/.po ]; then
. ~/.po . ~/.po
fi fi