11 lines
258 B
Bash
11 lines
258 B
Bash
|
# Correct spelling for commands
|
||
|
setopt correct
|
||
|
|
||
|
# turn off the infernal correctall for filenames
|
||
|
unsetopt correctall
|
||
|
|
||
|
# Enable command auto-correction.
|
||
|
ENABLE_CORRECTION="true"
|
||
|
|
||
|
# Display red dots whilst waiting for completion.
|
||
|
COMPLETION_WAITING_DOTS="true"
|