Skip to content

Instantly share code, notes, and snippets.

@dislick
Last active December 7, 2016 12:46
Show Gist options
  • Save dislick/f948f1b29f3916cadf2197d10d7aa1be to your computer and use it in GitHub Desktop.
Save dislick/f948f1b29f3916cadf2197d10d7aa1be to your computer and use it in GitHub Desktop.
My bash_profile
# enable colors in your terminal
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
# aliases
alias ls='ls -GFh'
alias gitc='git add --all && git commit -m'
alias gitl='git log --graph --oneline --decorate'
alias gitd='git status && git status | grep ": " | sed -e 's/[a-z]*://' | git diff'
alias minify='convert -strip -quality 85% -geometry 1920x'
alias ifc='ifconfig en0'
shopt -s globstar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment