Last active
April 7, 2019 07:21
-
-
Save mengjiann/22171e2097edc4d04d2d49ae08d166cc to your computer and use it in GitHub Desktop.
my .zshrc
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
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