From 40e7d4f46b4d37358dbb95fd3bbbcc58dc634a5a Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Wed, 14 Sep 2022 17:52:02 +0200 Subject: [PATCH] Remove vim alias --- zsh/.config/zsh/aliases.zsh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/zsh/.config/zsh/aliases.zsh b/zsh/.config/zsh/aliases.zsh index ed924dc..42fcc1f 100644 --- a/zsh/.config/zsh/aliases.zsh +++ b/zsh/.config/zsh/aliases.zsh @@ -31,9 +31,10 @@ alias gsa="git submodule add" alias gsur="git submodule update --remote" # Misc. -(( ${+commands[nvim]} )) && alias vim="nvim" -(( ${+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" +(( ${+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 -g e="\$EDITOR" alias grep="grep --color=always"