Update 2024-02-14 16:09 Darwin/arm64-GH2T6W9K6H

This commit is contained in:
c0dev0id 2024-02-14 16:09:57 +01:00
parent 288c6b172f
commit 88726fbff0
1 changed files with 6 additions and 2 deletions

8
.kshrc
View File

@ -33,6 +33,11 @@ export EDITOR VISUAL BROWSER PAGER
PRINTER="rp"
export PRINTER
########################################################################
# LOAD LOCAL STUFF
########################################################################
[ -f ~/.ksh.local ] && . ~/.ksh.local
########################################################################
# STOP HERE IF NON INTERACTIVE
########################################################################
@ -64,10 +69,9 @@ set -o emacs
set bell-style none
########################################################################
# LOAD LOCAL ADDITIONS
# LOAD COMPLETION FILE
########################################################################
[ -f ~/.ksh.local ] && . ~/.ksh.local
[ -f ~/.ksh.complete ] && . ~/.ksh.complete
########################################################################