#---------------------------------------[SANE DEFAULTS: SAFETY & SECURITY RELATED]-------------------------------------
  # for safety, make rm always warn me:
    alias rm='rm -i'

  # for safety, prevent chown from following symlinks:
    alias chown="chown -h"

  # for privacy and successful dls, make youtube-dl always have the following flags active:
    alias youtube-dl='youtube-dl --no-call-home --ignore-errors'

