Last active
December 7, 2016 12:46
-
-
Save dislick/f948f1b29f3916cadf2197d10d7aa1be to your computer and use it in GitHub Desktop.
My bash_profile
This file contains hidden or 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
# 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