Skip to content

Instantly share code, notes, and snippets.

@mladenp
Created December 19, 2023 12:04
Show Gist options
  • Save mladenp/62f6c2c3fb1224289480b3d7929a5c09 to your computer and use it in GitHub Desktop.
Save mladenp/62f6c2c3fb1224289480b3d7929a5c09 to your computer and use it in GitHub Desktop.
zsh options
HISTSIZE=5000
HISTFILE=~/.zsh_history
SAVEHIST=5000
HISTDUP=erase
setopt appendhistory
unsetopt inc_append_history
setopt sharehistory
setopt incappendhistory
setopt hist_ignore_all_dups
setopt hist_save_no_dups
setopt hist_ignore_dups
setopt hist_find_no_dups
autoload -U compinit && compinit
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment