Add d, s and re aliases
This commit is contained in:
parent
629348bf97
commit
1b0c7ed77e
|
@ -31,16 +31,16 @@ alias gsa="git submodule add"
|
||||||
alias gsur="git submodule update --remote"
|
alias gsur="git submodule update --remote"
|
||||||
|
|
||||||
# Misc.
|
# Misc.
|
||||||
(( ${+commands[doas]} )) || alias doas="sudo"
|
(( ${+commands[doas]} )) && alias d="doas" || alias s="sudo"
|
||||||
(( ${+commands[nvim]} )) && alias vim="nvim"
|
(( ${+commands[nvim]} )) && alias vim="nvim"
|
||||||
(( ${+commands[tmux]} )) && alias tmux="tmux -2u"
|
(( ${+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[dotnet]} )) && alias dnup="dotnet tool list --global | tail -n +3 | awk '{print \$1}' | xargs -l dotnet tool update --global"
|
||||||
alias cl="clear"
|
alias cl="clear"
|
||||||
alias de="doas \$EDITOR"
|
|
||||||
alias e="\$EDITOR"
|
alias e="\$EDITOR"
|
||||||
alias grep="grep --color=always"
|
alias grep="grep --color=always"
|
||||||
alias ls="ls --color=always"
|
alias ls="ls --color=always"
|
||||||
alias q="exit 0"
|
alias q="exit 0"
|
||||||
|
alias re="sudo \$EDITOR"
|
||||||
alias zgrep="zgrep --color=always"
|
alias zgrep="zgrep --color=always"
|
||||||
|
|
||||||
# Platform specific
|
# Platform specific
|
||||||
|
|
Loading…
Reference in a new issue