Guest User

Untitled

a guest
Jan 22nd, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #!/bin/zsh
  2.  
  3. # completion
  4. autoload -U compinit
  5. compinit
  6.  
  7. # correction
  8. setopt correctall
  9.  
  10. # history
  11. export HISTFILE=~/.zhistory
  12. export HISTSIZE=50000
  13. export SAVEHIST=50000
  14. setopt histignoredups
  15. setopt extendedhistory
  16. setopt incappendhistory
  17. # history search & completion
  18. autoload history-search-end
  19. bindkey "^[[A" history-search-backward
  20. bindkey "^[[B" history-search-forward
  21.  
  22. # prompt
  23. autoload -U promptinit
  24. promptinit
  25. prompt adam1
  26.  
  27. # aliases
  28. alias ls='ls --color=auto'
Add Comment
Please, Sign In to add comment