Guest User

(。>﹏<。)

a guest
Mar 13th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. source ~/.zsh_aliases
  2. source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
  3. source /usr/local/opt/zsh-history-substring-search/zsh-history-substring-search.zsh
  4.  
  5. zmodload zsh/terminfo
  6. bindkey "^[[A" history-substring-search-up
  7. bindkey "^[[B" history-substring-search-down
  8.  
  9. function run() {
  10. number=$1
  11. shift
  12. for n in $(seq $number); do
  13. $@
  14. done
  15. }
  16.  
  17. export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=0'
  18. export EDITOR=nano
  19. export HISTSIZE=10000
  20. export SAVEHIST=10000
  21. export HISTFILE=~/.zshistory
  22. setopt inc_append_history
  23.  
  24. # Lines configured by zsh-newuser-install
  25. HISTFILE=~/.histfile
  26. HISTSIZE=10000
  27. SAVEHIST=10000
  28. setopt autocd
  29. bindkey -e
  30. # End of lines configured by zsh-newuser-install
  31. # The following lines were added by compinstall
  32. zstyle :compinstall filename '/Users/akari/.zshrc'
  33.  
  34. autoload -Uz compinit
  35. compinit
  36. # End of lines added by compinstall
  37.  
  38. setopt promptsubst
  39. unsetopt equals
  40. PROMPT='%B%F{yellow}>> %f'
  41. RPROMPT='%B%F{yellow}%~ %B%F{red}(。>﹏<。)'
  42.  
  43.  
  44. test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"
Advertisement
Add Comment
Please, Sign In to add comment