1
0

history.zsh 567 B

123456789101112131415161718192021222324252627
  1. HISTFILE=~/.zsh_history
  2. HISTSIZE=30000
  3. SAVEHIST=25000
  4. # ignore sequential duplicates
  5. setopt hist_ignore_dups
  6. setopt hist_reduce_blanks
  7. # shared history across shells
  8. setopt APPEND_HISTORY
  9. setopt INC_APPEND_HISTORY
  10. # list choices on ambiguous completion
  11. # use BASH_AUTO_LIST to require a second keypress
  12. setopt AUTO_LIST
  13. # don't list on unambiguous prefix
  14. setopt LIST_AMBIGUOUS
  15. # share history between terminals
  16. setopt share_history
  17. # bind to zsh-history-substring-search
  18. bindkey '^[[A' history-substring-search-up
  19. bindkey '^[[B' history-substring-search-down