this repo has no description

zsh: history settings

seth.computer 3e9724d9 f9b83ce3

verified
+9
+9
zsh/zshrc
··· 1 1 autoload -Uz compinit && compinit 2 2 3 + # history 4 + HISTFILE="$HOME/.zsh_history" 5 + HISTSIZE=10000 6 + SAVEHIST=10000 7 + setopt APPEND_HISTORY 8 + setopt INC_APPEND_HISTORY 9 + setopt HIST_IGNORE_DUPS 10 + setopt HIST_IGNORE_SPACE 11 + 3 12 # homebrew, load first because it manages many downstream dependencies from here 4 13 [ -f "/opt/homebrew/bin/brew" ] && eval "$(/opt/homebrew/bin/brew shellenv)" 5 14 [ -f "/home/linuxbrew/.linuxbrew/bin/brew" ] && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"