Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # ENVIRONMENT VARIABLES
  2.  
  3. # add my ~/bin dir to path
  4. PATH=${PATH}:~/bin
  5. export PATH
  6.  
  7. # simple prompt
  8. # default macOS prompt is: \h:\W \u\$
  9. export PS1="\W \$ "
  10.  
  11. # enable Terminal color
  12. export CLICOLOR=1
  13.  
  14. # set EDITOR to bbedit
  15. if [[ -e "/usr/local/bin/bbedit" ]]; then
  16. export EDITOR="bbedit -w --resume"
  17. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement