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
# z's config for the zsh | |
TERM=xterm-256color | |
# Load user rc script | |
[ -f "$HOME/.zsh_user.zsh" ] && source "$HOME/.zsh_user.zsh" | |
# History in cache directory: | |
HISTSIZE=10000 | |
SAVEHIST=10000 | |
if [ -z "$HISTFILE" ]; then |