1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-06-29 00:57:44 +02:00
dotfiles/bash_profile
2012-06-25 18:51:11 +02:00

61 lines
2.2 KiB
Bash

########################################################################
# bash_profile, basically from the whole internet
# and a lot from @necolas, @mathiasbynens & @rtomayko
#
# https://github.com/mathiasbynens/dotfiles
# https://github.com/necolas/dotfiles
# https://github.com/rtomayko/dotfiles
########################################################################
# ----------------------------------------------------------------------
# Load ~/.private, ~/.bash_prompt
# ----------------------------------------------------------------------
for file in ~/.{private,bash_prompt}; do
[ -r "$file" ] && source "$file"
done
unset file
# ----------------------------------------------------------------------
# SHELL OPTIONS
# ----------------------------------------------------------------------
# fuck that you have new mail shit
unset MAILCHECK
# ----------------------------------------------------------------------
# PATH
# ----------------------------------------------------------------------
PATH="$PATH:/usr/local/sbin:/usr/sbin:/sbin";
# if these bins exist, then add them to the PATH
ANDROID_HOME="/usr/local/Cellar/android-sdk/r18"
[ -d "$ANDROID_HOME" ] && PATH="$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools";
# add to beginning of PATH so that it always take precedence over /usr/bin
[ -d "/usr/local/bin" ] && PATH="/usr/local/bin:$PATH";
[ -d "/usr/local/mysql/bin" ] && PATH="/usr/local/mysql/bin:$PATH";
export PATH
# ----------------------------------------------------------------------
# ALIASES
# ----------------------------------------------------------------------
alias ll='ls -la'
# Get into main server FAST. Server & port are in .ssh/config
alias krlc='ssh kremalicious'
# Terminal needs more Espresso
alias esp="open -a Espresso"
# Get OS X Software Updates, update Homebrew itself, and upgrade installed Homebrew packages
alias update='sudo softwareupdate -i -a; sudo gem update --system; sudo gem update; brew update; brew upgrade; npm update -g'
# ----------------------------------------------------------------------
# LSCOLORS
# ----------------------------------------------------------------------
export CLICOLOR=1
export LSCOLORS=gxfxcxdxbxegedabagacad