From 82668354ee43e9459dce849df3411a701b61a901 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 17 Sep 2026 10:54:36 +0000 Subject: [PATCH] feat(zsh): add tf alias for terraform Completes the git/kubectl/terraform trio alongside the existing g and k aliases. Uses tf rather than t, which stays bound to the go-task runner. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01F6GNr7HMKqnZnnf9AkN2KF --- zsh/aliases.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 406631b3..369e78c9 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -33,6 +33,7 @@ alias k='kubectl' alias l='eza -agl --group-directories-first --time-style=long-iso' alias s="rg --follow --hidden --smart-case --no-ignore --glob '!{.git,dist,node_modules,tags}'" alias t='task' +alias tf='terraform' alias v='lazygit' # Docker {{{