From 6e11b6315082266a56b4f3cfc8f8a3e71994260d Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 1 Jul 2022 11:20:16 +0200 Subject: [PATCH] path: convert indentation to 2 spaces --- config/shell/path.sh | 48 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/config/shell/path.sh b/config/shell/path.sh index c522a2a..a663adb 100644 --- a/config/shell/path.sh +++ b/config/shell/path.sh @@ -13,17 +13,17 @@ # Add custom bin dirs to PATH if they exist and are not already in PATH. while read -r dir; do - case ":${PATH:=$dir}:" in - *:"$dir":*) ;; - *) PATH="$dir:$PATH" ;; - esac + case ":${PATH:=$dir}:" in + *:"$dir":*) ;; + *) PATH="$dir:$PATH" ;; + esac done </dev/null 2>&1 && MANPATH="$(unset MANPATH; manpath)" while read -r dir; do - case ":${MANPATH:=$dir}:" in - *:"$dir":*) ;; - *) MANPATH="$dir:$MANPATH" ;; - esac + case ":${MANPATH:=$dir}:" in + *:"$dir":*) ;; + *) MANPATH="$dir:$MANPATH" ;; + esac done </dev/null 2>&1; then - export EDITOR="nvim" + export EDITOR="nvim" else - export EDITOR="vim" + export EDITOR="vim" fi if command -v brew >/dev/null 2>&1; then - export HOMEBREW_NO_ANALYTICS=1 - export HOMEBREW_NO_AUTO_UPDATE=1 + export HOMEBREW_NO_ANALYTICS=1 + export HOMEBREW_NO_AUTO_UPDATE=1 fi