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
# wsl zsh config | |
if [ ! -f ~/.zshrc.zwc ] || [ ~/.zshrc -nt ~/.zshrc.zwc ]; then | |
zcompile ~/.zshrc | |
fi | |
#cmd history | |
HISTFILE=~/.zsh_history | |
HISTSIZE=5000 | |
SAVEHIST=5000 | |
setopt EXTENDED_HISTORY | |
setopt HIST_EXPIRE_DUPS_FIRST |