bash: remove unused shell aliases and functions

This commit is contained in:
Fernando Schauenburg 2021-07-22 17:34:09 +02:00
parent e44b318e61
commit a9ee9983b3

View file

@ -168,10 +168,6 @@ fi
alias ll="ls -l" alias ll="ls -l"
alias lla="la -l" alias lla="la -l"
alias g='git'
alias v='nvim'
alias vim='nvim'
alias grep="grep --color=auto" alias grep="grep --color=auto"
alias egrep="egrep --color=auto" alias egrep="egrep --color=auto"
alias fgrep="fgrep --color=auto" alias fgrep="fgrep --color=auto"
@ -179,12 +175,6 @@ alias fgrep="fgrep --color=auto"
alias dark='change_bg dark' alias dark='change_bg dark'
alias light='change_bg light' alias light='change_bg light'
##############################################################################
# Add shell functions
##############################################################################
mkcd() { mkdir -p -- "$1" && cd -P -- "$1" || return; }
############################################################################## ##############################################################################
# Run external customizations # Run external customizations
############################################################################## ##############################################################################
@ -198,6 +188,5 @@ _source_extra_configs() {
local f local f
for f in ${configs[@]}; do [ -f "$f" ] && source "$f"; done for f in ${configs[@]}; do [ -f "$f" ] && source "$f"; done
} }
_source_extra_configs _source_extra_configs || true
true