aboutsummaryrefslogtreecommitdiff
path: root/ksh/kshrc
blob: 5d481bb4bbf36f34f878ed542c36aa132c389f13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Emacs-style key bindings; these are present in ksh88 and pdksh
set -o braceexpand
set -o emacs

# Track locations of binaries
set -o trackall

# Use subshells to test these newer options, as ksh93 seems to get very upset
# if you try to set an option and it doesn't exist

# Try to get "**" as a recursive glob
(set -o globstar) 2>/dev/null &&
    set -o globstar

# Try to get !-style history expansion
(set -o histexpand) 2>/dev/null &&
    set -o histexpand

# Save history
HISTFILE=$HOME/.ksh_history
HISTSIZE=$((1 << 10))

# Load any supplementary scripts
for kshrc in "$HOME"/.kshrc.d/*.ksh ; do
    [[ -e $kshrc ]] && . "$kshrc"
done
unset -v kshrc