Last active
December 28, 2018 10:06
-
-
Save k3muri84/bd37e3e402f95e78eceb514e03861bcc to your computer and use it in GitHub Desktop.
oh my zsh config
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
# my config for oh my zsh | |
# enable command auto-correction. | |
ENABLE_CORRECTION="true" | |
# display red dots whilst waiting for completion. | |
COMPLETION_WAITING_DOTS="true" | |
# plugins to load | |
plugins=(git git-extra common-aliases urltools atom wd autojump alias-tips jira) | |
# zsh completions | |
fpath=(/usr/local/share/zsh-completions $fpath) | |
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh | |
# ssh | |
export SSH_KEY_PATH="~/.ssh/rsa_id" | |
alias v=vim | |
alias p3="python3" | |
alias srv="python -m SimpleHTTPServer 9090" | |
alias ranger='ranger --choosedir=$HOME/rangerdir; LASTDIR=`cat $HOME/rangerdir`; cd "$LASTDIR"' | |
alias ra=ranger | |
alias conf='vim ~/.zshrc' | |
alias ip='ifconfig | grep "inet " | grep -v 127.0.0.1 | cut -d\ -f2' | |
alias speedtest='curl -o /dev/null http://speedtest.wdc01.softlayer.com/downloads/test10.zip' | |
alias diskspace='du -hs * | sort -h' | |
alias refresh-zsh='source ~/.zshrc' | |
alias xflac="flac -8 *.wav; rm -f *.wav" | |
alias xmrgpu="cd /Users/kemuri/Development/xmr-stak/build/bin && ./xmr-stak" | |
alias xmr="cd /Users/kemuri/Development/xmr-stak/build/bin && ./xmr-stak --noAMD" | |
# git | |
alias gcop='gco @{-1}' | |
alias git-delete-branch='gp origin --delete' | |
alias switchuser-github='git config user.name echorebel; git config user.email [email protected]' | |
alias gpf='gp --force-with-lease' | |
# android | |
alias pide="pidcat taxi.android.client.alpha -e" | |
alias pidd="pidcat taxi.android.client.alpha -d" | |
alias pids="pidcat taxi.android.client.alpha -s" | |
alias ac="adb connect 10.20.8.64" | |
alias apk="adb install -r -d" | |
alias gr="./gradlew" | |
alias uninstallTaxi="adb uninstall taxi.android.client" | |
alias runTaxi="adb shell am start -n taxi.android.client/taxi.android.client.feature.startup.ui.StartupActivity" | |
# osx only | |
alias xld='/Applications/XLD.app/Contents/MacOS/XLD --cmdline "$@"' | |
alias unity="open -na Unity" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment