Created
June 23, 2015 13:40
-
-
Save armiller/81d575bcfcea22ac1881 to your computer and use it in GitHub Desktop.
mac .bash_profile
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
homebrew=/usr/local/bin:/usr/local/sbin | |
export PATH=$homebrew:$PATH | |
#ruby=/usr/local/opt/ruby/bin | |
export PATH=$PATH:/usr/local/opt/go/libexec/bin:/Users/Knifeninjas/Library/Haskell/bin | |
## | |
# Your previous /Users/Knifeninjas/.bash_profile file was backed up as /Users/Knifeninjas/.bash_profile.macports-saved_2012-10-17_at_21:40:28 | |
## | |
if [ -f ~/.bashrc ]; then | |
source ~/.bashrc | |
fi | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
#!/bin/bash | |
GIT_PS1_SHOWDIRTYSTATE=true | |
export LS_OPTIONS='--color=auto' | |
export CLICOLOR='Yes' | |
export LSCOLORS=gxfxbEaEBxxEhEhBaDaCaD | |
alias ll='ls -lah' | |
alias gg='git status -s' | |
source /Users/Knifeninjas/.iterm2_shell_integration.bash | |
#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment