X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=zsh%2F.zshrc;h=048fee325f080804863f9409a343d93c463fe33e;hb=f51006942c42932c1db15534f8d3f9b47a69704a;hp=ef56e6820fea2b010cb2bd77258d1f5fa1a296a3;hpb=24ffbdb7c8444e77a513878d515fc5c8c57df29b;p=dotfiles.git diff --git a/zsh/.zshrc b/zsh/.zshrc index ef56e68..048fee3 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -97,13 +97,14 @@ alias sshnm="ssh -S none" # Faster movement {{{ cddotdot() { cd .. + pwd zle reset-prompt } zle -N cddotdot bindkey "OQ" cddotdot # F2 pushdquiet() { - popd >/dev/null + popd zle reset-prompt } zle -N pushdquiet @@ -115,7 +116,8 @@ alias Ga="git add" alias Gb="git branch" alias Gc="git checkout" alias Gd="git diff" -alias Gs="git show" +alias Gdc="git diff --cached" +alias Gs="git show --show-signature" alias Gm="git diff --name-only --diff-filter=M" alias Gam="git commit --amend"