From 9b8597ed62a51a523cca70eab6d7643ea884c9d4 Mon Sep 17 00:00:00 2001 From: Thomas Ott <693276+greenchapter@users.noreply.github.com> Date: Tue, 5 May 2026 16:34:54 +0200 Subject: [PATCH] feat: add Python3 shell aliases --- zsh/custom/aliases.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/custom/aliases.zsh b/zsh/custom/aliases.zsh index 574516b..1e950b1 100644 --- a/zsh/custom/aliases.zsh +++ b/zsh/custom/aliases.zsh @@ -39,3 +39,5 @@ alias gdk="git difftool" # Kubernetes export yaml='--dry-run=client -o yaml' # This way you can just run k run pod --image=nginx ${=yaml}. export now="--force --grace-period O" # This way you can run k delete pod ${=now}. +alias python='python3' +alias pip='pip3'