From 3ee2e833d6e423ced02c182a55c35b9a4bc3c687 Mon Sep 17 00:00:00 2001 From: katherine Date: Sat, 17 Aug 2019 00:46:19 -0700 Subject: clean zsh stuff --- .zshrc-freebsd | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) (limited to '.zshrc-freebsd') diff --git a/.zshrc-freebsd b/.zshrc-freebsd index 62b19f0..5d20ab1 100644 --- a/.zshrc-freebsd +++ b/.zshrc-freebsd @@ -1,32 +1,6 @@ ################### ALIASES ################## + alias ls='ls -G' alias ll='ls -lGh' alias grep='grep --color=auto' alias diff='colordiff' - -################## FUNCTIONS ################## - -# bits to human readable value -b2h() { - local suffixes=( 'B' 'K' 'M' 'G' 'T' 'P' 'E' 'Z' 'Y' ) - local sindex=1 - local val=$1 - [[ -z $(echo $1 | grep "^[0-9]*$") ]] && read val - - while [[ $(echo $val / 1024 | bc) -ne 0 ]]; do - val=$(echo "scale=2; $val / 1024" | bc) - let sindex=sindex+1 - done - - echo "${val}${suffixes[$sindex]}" -} - -# ignore non-tracked files -git() { - if [[ $# -gt 0 ]] && [[ "$1" == "status" ]]; then - shift - $(which -p git) status -uno "$@" - else - $(which -p git) "$@" - fi -} -- cgit v1.2.3