From 3408428739b2efa8c10809690bc788130f9edc71 Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Fri, 17 Jun 2022 20:35:10 +0200 Subject: [PATCH] Make e global alias --- zsh/.config/zsh/aliases.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.config/zsh/aliases.zsh b/zsh/.config/zsh/aliases.zsh index f7de2b1..2f8dba2 100644 --- a/zsh/.config/zsh/aliases.zsh +++ b/zsh/.config/zsh/aliases.zsh @@ -35,7 +35,7 @@ alias gsur="git submodule update --remote" (( ${+commands[tmux]} )) && alias tmux="tmux -2u" (( ${+commands[dotnet]} )) && alias dnup="dotnet tool list --global | tail -n +3 | awk '{print \$1}' | xargs -l dotnet tool update --global" alias cl="clear" -alias e="\$EDITOR" +alias -g e="\$EDITOR" alias grep="grep --color=always" alias ls="ls --color=always" alias q="exit 0"