Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. # Path to your oh-my-zsh configuration.
  2. ZSH=$HOME/my/oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. ZSH_THEME="geoffgarside"
  6.  
  7. # oh-my-zsh plugins
  8. plugins=(
  9. git git-extras github \
  10. heroku \
  11. osx \
  12. cp copydir copyfile \
  13. npm \
  14. )
  15.  
  16. # source other profile files
  17. source $ZSH/oh-my-zsh.sh
  18. source /opt/boxen/env.sh
  19.  
  20. # source private synced .env vars
  21. source ~/Dropbox/Sync/.env
  22.  
  23. # Load the shell dotfiles, and then some:
  24. for file in ~/my/dotfiles/.{exports,aliases,functions}; do
  25. [ -r "$file" ] && [ -f "$file" ] && source "$file";
  26. done;
  27. unset file;
  28.  
  29. # i like burgers
  30. export PS1="๐Ÿ” $PS1"
  31.  
  32. # file size limit
  33. ulimit -n 10000
  34. eval "$(direnv hook zsh)"
  35.  
  36. echo "dotfiles sourced"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement