From e8de8654178b5b0dc49d768021ee57c0a615537c Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 17 Sep 2025 14:45:49 -0400 Subject: [PATCH] feat: Sets up correction suggestions for zsh --- zsh/config/.zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/config/.zshrc b/zsh/config/.zshrc index 9d84aff..f77f53e 100755 --- a/zsh/config/.zshrc +++ b/zsh/config/.zshrc @@ -114,6 +114,7 @@ setopt aliases setopt auto_pushd # Push the current directory on the stack. setopt pushd_ignore_dups # Ignore duplicates in stack setopt pushd_silent # Do not print stack after pushd or popd. +setopt CORRECT # Offers corrections on misspelled commands. bindkey -v # Enable vi mode export KEYTIMEOUT=1 # Switch between vim mode quicker.