Guest User

Untitled

a guest
Oct 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 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. # Customize to your needs...
  14. fpath=(path/to/zsh-completions/src $fpath)
  15.  
  16. alias vi='nvim'
  17. alias vim='nvim'
  18.  
  19. source ~/.zplug/init.zsh
  20.  
  21. zplug "wbinglee/zsh-wakatime"
  22.  
  23. # syntax
  24. zplug "chrissicool/zsh-256color"
  25. zplug "Tarrasch/zsh-colors"
  26. zplug "zsh-users/zsh-syntax-highlighting"
  27. zplug "ascii-soup/zsh-url-highlighter"
  28.  
  29. # program
  30. zplug "voronkovich/mysql.plugin.zsh"
  31.  
  32. # tools
  33. zplug "marzocchi/zsh-notify"
  34. zplug "oknowton/zsh-dwim"
  35.  
  36. export PATH="/usr/local/opt/openssl/bin:$PATH"
  37. export PATH=$HOME/.nodebrew/current/bin:$PATH
  38. export PATH="$HOME/.rbenv/bin:$PATH"
  39. if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
  40.  
  41. # heroku autocomplete setup
  42. HEROKU_AC_ZSH_SETUP_PATH=/Users/taikifnit/Library/Caches/heroku/autocomplete/zsh_setup && test -f $HEROKU_AC_ZSH_SETUP_PATH && source $HEROKU_AC_ZSH_SETUP_PATH;
Add Comment
Please, Sign In to add comment