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
#function for all the fun GIT stuff, w00t! | |
function parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
} | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" | |
} | |
export PS1='\[\033[1m\]\[\033[40m\]\[\033[40m\]\[\033[30m\]Mac\[\033[40m\]\[\033[35m\] \w\[\033[0;32m\]$(parse_git_branch)\[\033[35m\]$\[\033[37m\] ' | |
#export PATH="$PATH:~/dev/drush:/usr/local/bin" | |
# Aliases | |
# alias drush='~/dev/drush/drush' | |
alias fixit='drush php-eval "_mongodb_block_rehash(variable_get(\"theme_default\", \"\"))";' | |
alias bun='bundler' | |
alias flushy='drush cc registry && drush cc theme-list && drush cc module-list && drush cc theme-registry && drush cc block && drush cc css-js' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment