2019-07-24 05:33:28 +00:00
|
|
|
#!/bin/zsh
|
2019-02-18 16:55:05 +00:00
|
|
|
# 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.
|
2019-07-24 05:33:28 +00:00
|
|
|
COMPLETION_WAITING_DOTS="true"
|