From 59cff72b5409c42d954a77b08555f767fe2987f2 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sat, 26 Dec 2020 02:41:16 +0100 Subject: [PATCH] bash: remove aliases that turned out to be useless --- roles/dotfiles/files/bashrc | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/roles/dotfiles/files/bashrc b/roles/dotfiles/files/bashrc index 90d332b..9ff19cf 100644 --- a/roles/dotfiles/files/bashrc +++ b/roles/dotfiles/files/bashrc @@ -187,23 +187,13 @@ else alias lsc="/usr/bin/env CLICOLOR_FORCE=1 ls" fi -# Use my colorman wrapper if available. -command -v colorman >/dev/null && alias man=colorman - alias ll="ls -l" alias lla="la -l" -alias g='git' -alias ga='git a' -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' +# Use my colorman wrapper if available. +command -v colorman >/dev/null && alias man=colorman +alias g='git' alias v='vim' alias grep="grep --color=auto" @@ -211,7 +201,6 @@ alias egrep="egrep --color=auto" alias fgrep="fgrep --color=auto" alias path='echo $PATH | 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"'