Skip to content

Instantly share code, notes, and snippets.

@nacho4d
Last active December 9, 2015 19:48
Show Gist options
  • Save nacho4d/4319181 to your computer and use it in GitHub Desktop.
Save nacho4d/4319181 to your computer and use it in GitHub Desktop.
~/.bash_profile
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
export LS_COLORS=$LSCOLORS
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
#PS1='\[\e[0;33m\][\h:\W \u]$\[\e[m\] '
PS1='\[\e[0;33m\][\w]$\[\e[m\] '
source ~/.git-completion.bash
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export PATH="$HOME/.bin:$PATH"
# QT stuff
export QTDIR="{HOME}/Documents/Qt/5.4"
export PATH="$QTDIR/clang_64/bin:$PATH"
# pkgconfig
#export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig
alias unity='open /Applications/Unity/Unity.app'
# Android Dev stuff
export ANDROID_HOME="${HOME}/.bin/adt-bundle-mac-x86_64-20140702/sdk"
export PATH="${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools:$PATH"
alias adblog="grc adb logcat"
alias adbrun="adb shell am start -n com.gree.example.myfirstapp/com.gree.example.myfirstapp.MainActivity"
# Go stuff
export GOPATH="${HOME}/Documents/goworkspace"
export PATH="$PATH:${GOPATH}/bin"
alias cf="${HOME}/Documents/svn/llvm/Release+Asserts/bin/clang-format"
alias ds="cd ${HOME}/Documents/github/"
alias xcode="open -a /Applications/Xcode.app/"
alias unitylog="tail -f ${HOME}/Library/Logs/Unity/Editor.log"
@nacho4d
Copy link
Author

nacho4d commented Dec 17, 2012

My terminal settings can be downloaded from here: com.apple.Terminal.plist
and should be placed at ~/Library/Preferences/com.apple.Terminal.plist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment