From 3b0aa0aa341f40c7c81b28a049edbd33405fe352 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 6 Oct 2024 09:55:15 +0100 Subject: [PATCH] Update abbreviations --- lib/shared/modules/zsh/abbreviations.zsh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/shared/modules/zsh/abbreviations.zsh b/lib/shared/modules/zsh/abbreviations.zsh index 82f2667..5c5304d 100644 --- a/lib/shared/modules/zsh/abbreviations.zsh +++ b/lib/shared/modules/zsh/abbreviations.zsh @@ -18,6 +18,7 @@ abbr gan="git add -N" abbr gap="git add -p" abbr gc="git commit" abbr gca="git commit --amend" +abbr gcan="git commit --amend --no-edit" abbr gcm="git commit -m" abbr gd="git diff" abbr gf="git fetch" @@ -26,6 +27,7 @@ abbr gl="git log" abbr glo="git log --oneline" abbr gls="git log --stat" abbr gpl="git pull" +abbr gplr="git pull --rebase" abbr gps="git push" abbr gri="git rebase -i" abbr gs="git status" @@ -116,3 +118,10 @@ abbr -g H="| head" abbr -g L="| less" abbr -g V="| nvim -" abbr -g X="| xargs -I1" + +abbr today="task +TODAY" +abbr tomorrow="task +TOMORROW" +abbr overdue="task +OVERDUE" + +abbr nah="git reset --hard; git clean -fd" +abbr wip="git commit -m wip"