Created
November 21, 2013 13:55
-
-
Save jokull/7581920 to your computer and use it in GitHub Desktop.
Bash Profile
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=/usr/local/bin:/usr/local/sbin:$PATH | |
PATH=/usr/local/share/npm/bin:$PATH | |
PATH=/usr/local/heroku/bin:$PATH | |
export HISTSIZE=1000 | |
source /usr/local/Cellar/autoenv/0.1.0/activate.sh | |
source /usr/local/etc/bash_completion.d/git-completion.bash | |
export LC_CTYPE=is_IS.UTF-8 | |
export EDITOR="subl" | |
export CLICOLOR='Yes' | |
export LSCOLORS='' | |
export HASTE_SERVER="http://haste.solberg.is" | |
export PIP_DOWNLOAD_CACHE=$HOME/.pip_cache | |
alias mate=subl | |
alias server="~/Code/quizup-admin/venv/bin/honcho -e ~/Code/quizup-admin/.staging-env run ~/Code/quizup-admin/venv/bin/python ~/Code/quizup-admin/admin.py ls -a" | |
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm # Load RVM into a shell session *as a function* | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ →\1/ ' | |
} | |
function proml { | |
local BLUE="\[\033[0;34m\]" | |
local LIGHT_BLUE="\[\033[1;34m\]" | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" | |
local GREEN="\[\033[0;32m\]" | |
local LIGHT_GREEN="\[\033[1;32m\]" | |
local WHITE="\[\033[1;37m\]" | |
local LIGHT_GRAY="\[\033[0;37m\]" | |
local YELLOW="\[\033[0;33m\]" | |
local LIGHT_YELLOW="\[\033[1;33m\]" | |
case $TERM in | |
xterm*) | |
TITLEBAR='\[\033]0;\u@\h:\w\007\]' | |
;; | |
*) | |
TITLEBAR="" | |
;; | |
esac | |
PS1="${TITLEBAR}\ | |
$GREEN\u$WHITE.$LIGHT_BLUE\h$WHITE:$YELLOW\w$LIGHT_GRAY\$(parse_git_branch)\ | |
$LIGHT_GREEN$ $LIGHT_GRAY" | |
PS2='> ' | |
PS4='+ ' | |
} | |
proml | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment