Skip to content

Instantly share code, notes, and snippets.

@mengjiann
Last active April 7, 2019 07:21
Show Gist options
  • Save mengjiann/22171e2097edc4d04d2d49ae08d166cc to your computer and use it in GitHub Desktop.
Save mengjiann/22171e2097edc4d04d2d49ae08d166cc to your computer and use it in GitHub Desktop.
my .zshrc
plugins=(
git docker docker-compose mvn tmux kubectl zsh-autosuggestions
)
# Pretty Json
alias pjson="python -m json.tool"
# Bind key
bindkey "\e\e[D" backward-word
bindkey "\e\e[C" forward-word
ZSH_THEME="robbyrussell"
# Git Alias
alias gs="git status"
alias gcmsg="git commit -m"
alias gco="git checkout"
alias gb="git branch"
alias gaa="git add --all"
alias gpull="git pull"
alias gpush="git push"
alias gdiff="git diff"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment