Remove vim alias

This commit is contained in:
Sam A. 2022-09-14 17:52:02 +02:00
parent 829b6a2310
commit 40e7d4f46b
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 4 additions and 3 deletions

View File

@ -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"