Created
August 17, 2018 01:58
-
-
Save apathetic/a42ce1157ccffbc4236627ce1c7e0cce to your computer and use it in GitHub Desktop.
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
#ZSH_THEME="agnoster" | |
ZSH_THEME="arrow" | |
. `brew --prefix`/etc/profile.d/z.sh | |
plugins=( | |
git | |
caniuse | |
atom_plugin | |
osx | |
extract | |
node | |
z | |
) | |
source $ZSH/oh-my-zsh.sh | |
alias t='top -U whatch -O cpu -n 10' | |
alias ps='ps -fx' | |
alias p='ping www.google.com' | |
alias l='ls -la' | |
alias ll='ls -l' | |
alias ..='cd ..' | |
alias ...='cd ../../' | |
alias chrome='open -a Google\ Chrome --args --disable-web-security' | |
alias ff='/Applications/Firefox.app/Contents/MacOS/firefox-bin -no-remote -purgecaches -P dev &' | |
alias net='lsof -i ":80"' | |
alias ip="ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p'" | |
alias server='python -m SimpleHTTPServer' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment