Advertisement
Guest User

Untitled

a guest
Nov 8th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. HISTFILE=~/.histfile
  2. HISTSIZE=1000
  3. SAVEHIST=1000
  4. NO_BEEP=1
  5. AUTO_CD=1
  6. KEYTIMEOUT=5
  7.  
  8. bindkey -v
  9.  
  10. path+=("~/scripts")
  11.  
  12. [[ -e `which keychain` ]] && eval `keychain --agents gpg,ssh --eval --quiet --nogui --noask id_rsa`
  13.  
  14. [[ -e ~/.zaliases ]] && source ~/.zaliases
  15. [[ -e ~/.zkeys ]] && source ~/.zkeys
  16. [[ -e ~/.zcursor ]] && source ~/.zcursor
  17. [[ -e ~/.zprompt ]] && source ~/.zprompt
  18.  
  19. autoload -Uz compinit promptinit
  20. compinit
  21. promptinit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement