diff options
-rw-r--r-- | .zshrc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,9 +2,13 @@ autoload -U colors && colors PS1="%B%{$fg[yellow]%}[%{$fg[green]%}%n%{$fg[yellow]%}@%{$fg[cyan]%}%M%{$fg[yellow]%}:%{$fg[yellow]%}%~%{$fg[yellow]%}]"$'\n'"%{$fg[yellow]%}>%b " stty stop undef HISTFILE=~/.histfile -HISTSIZE=1000000 -SAVEHIST=1000000 +HISTSIZE=100000 +SAVEHIST=100000 setopt EXTENDED_HISTORY +setopt SHARE_HISTORY +setopt HIST_IGNORE_DUPS +setopt HIST_FIND_NO_DUPS +setopt HIST_EXPIRE_DUPS_FIRST unsetopt beep bindkey -e zstyle :compinstall filename '~/.zshrc' |