.zshrc 391 B

123456789101112131415161718192021222324
  1. bindkey '^ ' autosuggest-accept
  2. # History
  3. HISTFILE=~/.histfile
  4. HISTSIZE=10000
  5. SAVEHIST=10000
  6. # Instantly write history
  7. setopt -o sharehistory
  8. # Ignore duplicates in history
  9. setopt HIST_IGNORE_DUPS
  10. # Delete old recorded entry if new entry is a duplicate.
  11. setopt HIST_IGNORE_ALL_DUPS
  12. setopt appendhistory autocd extendedglob nomatch
  13. # cdls
  14. function cd {
  15. builtin cd "$@" && ls -F
  16. }