Skip to content

Instantly share code, notes, and snippets.

@obihann
Last active August 29, 2015 13:56
Show Gist options
  • Save obihann/8964330 to your computer and use it in GitHub Desktop.
Save obihann/8964330 to your computer and use it in GitHub Desktop.
OSX Bash Config
source ~/.bashrc
PATH=${PATH}:/usr/local/share/npm/bin:/usr/local/sbin
PATH=$PATH:$HOME/adt/sdk/platform-tools:$HOME/adt/sdk/tools # Android SDK platform tools
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
PATH=$PATH:$HOME/flash-sdks/4.6.0/bin
if test -f ~/.rvm/scripts/rvm; then
[ "$(type -t rvm)" = "function" ] || source ~/.rvm/scripts/rvm
fi
export REBELSTAGE="authoring"
export EDITOR="vim"
export NODE_ENV="local"
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
alias flushdns="sudo killall -HUP mDNSResponder"
alias clock='tty-clock -cDs'
alias twitter='~/ttytter -ansi -verify -dostream'
alias vim="mvim"
PS1="\[\e[33m\] (env)\[\e[32m\] $(~/.rvm/bin/rvm-prompt) (venv) \e[34m\]\u@\h:[\w] \[\e[0m\]$ "
~/Scripts/startup.sh
#!/bin/sh
WIDTH=$(tput cols)
FIG="figlet -w $WIDTH -c GET THE FUCK TO WORK"
ARCH="archey -c"
$FIG
$ARCH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment