Last active
August 29, 2015 13:56
-
-
Save obihann/8964330 to your computer and use it in GitHub Desktop.
OSX Bash Config
This file contains 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
source ~/.bashrc |
This file contains 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
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 |
This file contains 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
#!/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