Skip to content

Instantly share code, notes, and snippets.

@astleychen
Last active October 23, 2017 15:59
Show Gist options
  • Save astleychen/0bc0723989d273a51df7fbf62e447bf5 to your computer and use it in GitHub Desktop.
Save astleychen/0bc0723989d273a51df7fbf62e447bf5 to your computer and use it in GitHub Desktop.
macOS bash profile used across all my mac machines.
alias ll='ls -al'
# Enable python for development
export PATH="/usr/local/opt/python/libexec/bin:$PATH"
# mozconfig wrapper - https://github.com/ahal/mozconfigwrapper
source /usr/local/bin/mozconfigwrapper.sh
# Rust tool chain
RUST_BIN=~/.cargo/bin
# Android platform tools
ANDROID_TOOLS=~/.mozbuild/android-sdk-macosx/platform-tools/
# MINIDUMP_STACKWALK
#export MINIDUMP_STACKWALK=~/mozilla/Tools/breakpad/osx64/minidump_stackwalk
# depot_tools for building Chromium Projects
DEPOT_TOOLS=~/Mozilla/build/depot_tools
# Update PATH
export PATH=$ANDROID_TOOLS:$RUST_BIN:$DEPOT_TOOLS:${PATH};
export EDITOR=vim
# ICECC Cluster Scheduler
export USE_SCHEDULER=10.247.24.135
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment