From 773d67892e0dcf13726ac88c026bf477b1cdb459 Mon Sep 17 00:00:00 2001 From: Alexis Hovorka Date: Sat, 1 Jan 2022 18:59:31 -0700 Subject: [fix] Prevent zsh from "correcting" to ".ssh" --- base/zsh/correction.zsh | 2 ++ 1 file changed, 2 insertions(+) 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' -- cgit v1.2.3-54-g00ecf