Created
December 19, 2023 12:04
-
-
Save mladenp/62f6c2c3fb1224289480b3d7929a5c09 to your computer and use it in GitHub Desktop.
zsh options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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