Last active
October 23, 2017 15:59
-
-
Save astleychen/0bc0723989d273a51df7fbf62e447bf5 to your computer and use it in GitHub Desktop.
macOS bash profile used across all my mac machines.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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