From 9696e3d8e97534edb8450f0659d892d9de75d90c Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 20 Sep 2022 19:14:36 -0400 Subject: [PATCH] Removed unused aliases --- zsh/modules/alias/init.zsh | 3 --- 1 file changed, 3 deletions(-) diff --git a/zsh/modules/alias/init.zsh b/zsh/modules/alias/init.zsh index f0cbe24..d1a049d 100644 --- a/zsh/modules/alias/init.zsh +++ b/zsh/modules/alias/init.zsh @@ -11,9 +11,6 @@ alias la="ls -lha $color_flag" # Get the most recently modified object in the current directory. alias lf="ls -1tr | tail -n 1" -alias docker="sudo docker" -alias dc="sudo docker-compose" - # Goes to a temp folder. This will be deleted on restart. alias _="cd `mktemp -d` ; "