diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 8b1c592..277119e 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -19,6 +19,7 @@ bindkey '^[[6~' down-line-or-history # PageDown HISTSIZE=10000 SAVEHIST=10000 HISTFILE=~/.cache/zsh/history +setopt hist_ignore_space # Ignore commands preceeded by a space # Basic auto/tab complete: autoload -U compinit @@ -27,6 +28,9 @@ zmodload zsh/complist compinit _comp_options+=(globdots) # Include hidden files. +# Command correction +setopt correctall + # vi mode bindkey -v export KEYTIMEOUT=1