diff --git a/lib/shared/modules/zsh/abbreviations.zsh b/lib/shared/modules/zsh/abbreviations.zsh
index 82f26678..5c5304d8 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"