Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # Include in .bash_profile or similar
  2. if [[ $platform == 'linux' ]]; then
  3. alias ll='ls -alh --color=auto'
  4. alias ls='ls --color=auto'
  5. elif [[ $platform == 'darwin' ]]; then
  6. alias ll='ls -alGh'
  7. alias ls='ls -Gh'
  8. fi
  9.  
  10. # Adding Homebrew alias
  11. alias brewup='brew update; brew upgrade; brew prune; brew cleanup; brew doctor'
  12.  
  13. echo "Improving terminal prompt ..."
  14. export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement