bash: remove aliases that turned out to be useless

This commit is contained in:
Fernando Schauenburg 2020-12-26 02:41:16 +01:00
parent 75b6b3a2dc
commit 59cff72b54

View file

@ -187,23 +187,13 @@ else
alias lsc="/usr/bin/env CLICOLOR_FORCE=1 ls" alias lsc="/usr/bin/env CLICOLOR_FORCE=1 ls"
fi fi
# Use my colorman wrapper if available.
command -v colorman >/dev/null && alias man=colorman
alias ll="ls -l" alias ll="ls -l"
alias lla="la -l" alias lla="la -l"
alias g='git' # Use my colorman wrapper if available.
alias ga='git a' command -v colorman >/dev/null && alias man=colorman
alias gc='git commit'
alias gd='git d'
alias gcm='git cm'
alias gl='git l'
alias gla='git la'
alias gln='git ln'
alias gs='git s'
alias gss='git ss'
alias g='git'
alias v='vim' alias v='vim'
alias grep="grep --color=auto" alias grep="grep --color=auto"
@ -211,7 +201,6 @@ alias egrep="egrep --color=auto"
alias fgrep="fgrep --color=auto" alias fgrep="fgrep --color=auto"
alias path='echo $PATH | tr -s ":" "\n"' alias path='echo $PATH | tr -s ":" "\n"'
alias mpath='echo $MANPATH | tr -s ":" "\n"' alias mpath='echo $MANPATH | tr -s ":" "\n"'
alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date'
alias tmux='tmux -f "$XDG_CONFIG_HOME/tmux/tmux.conf"' alias tmux='tmux -f "$XDG_CONFIG_HOME/tmux/tmux.conf"'