joshwhatk
2/3/2016 - 4:01 AM

Bash

Bash

# If Mac
export PATH=/usr/local/mysql/bin:/usr/local:/usr/local/bin:~/.composer/vendor/bin:$PATH

# Better Git log
## Thanks Jeffrey Way
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"

alias html="cd /var/www/"
alias ..="cd ../"
alias ...="cd ../../"
alias ....="cd ../../../"
alias l="ls -al"
alias ll="ls -hal"
alias ls="ls -GFh"
alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"

export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad

function cl(){ cd "$@" && ll; }