diff options
author | Alexis Hovorka <[email protected]> | 2022-01-01 18:59:31 -0700 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2022-01-01 18:59:31 -0700 |
commit | 773d67892e0dcf13726ac88c026bf477b1cdb459 (patch) | |
tree | 80c432c97cd58625a09245855f97d3d2e2b58c06 /base/zsh | |
parent | d5df7261f74c5abf50b760f52b7b85571909cd1f (diff) |
[fix] Prevent zsh from "correcting" to ".ssh"
Diffstat (limited to 'base/zsh')
-rw-r--r-- | base/zsh/correction.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/zsh/correction.zsh b/base/zsh/correction.zsh index ed79b63..fc6ee2b 100644 --- a/base/zsh/correction.zsh +++ b/base/zsh/correction.zsh @@ -1,4 +1,6 @@ setopt correct_all +export CORRECT_IGNORE_FILE='.*' + alias man='nocorrect man' alias gist='nocorrect gist' alias sudo='nocorrect sudo' |