Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. #
  2. # Executes commands at the start of an interactive session.
  3. #
  4. # Authors:
  5. # Sorin Ionescu <sorin.ionescu@gmail.com>
  6. #
  7.  
  8. # Source Prezto.
  9. if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
  10. source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
  11. fi
  12.  
  13. autoload -Uz promptinit
  14. promptinit
  15. prompt sorin
  16.  
  17. # Customize to your needs...
  18. fpath=(/usr/local/share/zsh-completions $fpath)
  19.  
  20. export GOPATH=$HOME/go
  21. export SUBLIME=subl
  22. export EDITOR="$SUBLIME --wait"
  23. export VISUAL=$EDITOR
  24. export JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-12.0.1.jdk/Contents/Home
  25. export PYENV_ROOT="$HOME/.pyenv"
  26. export RBENV_ROOT="$HOME/.rbenv"
  27. export PATH="$PYENV_ROOT/bin:$PYENV_ROOT/shims:$RBENV_ROOT/bin:$PATH"
  28. export PATH="/usr/local/opt/openldap/bin:$PATH"
  29. export LDFLAGS="${LDFLAGS} -L/usr/local/opt/zlib/lib -L/usr/local/opt/sqlite/lib"
  30. export CPPFLAGS="${CPPFLAGS} -I/usr/local/opt/zlib/include -I/usr/local/opt/sqlite/include"
  31. export PKG_CONFIG_PATH="${PKG_CONFIG_PATH} /usr/local/opt/zlib/lib/pkgconfig"
  32.  
  33.  
  34. if command -v pyenv 1>/dev/null 2>&1; then
  35. eval "$(pyenv init -)"
  36. fi
  37.  
  38. if command -v rbenv 1>/dev/null 2>&1; then
  39. eval "$(rbenv init -)"
  40. fi
  41.  
  42. eval "$(dircolors $HOME/.dir_colors)"
  43. source /usr/local/share/zsh/site-functions/aws_zsh_completer.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement