From d49219e852c95228eadad7b368c2cd87d70b138a Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Sat, 20 Jul 2024 10:29:44 +0700 Subject: [PATCH] chore: Don't supress git clone logs --- .config/zsh/.zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index b503115..477e781 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -59,7 +59,7 @@ install_plugin() { _PREV_PWD=$PWD cd "$ZSH_PLUGINS" echo "========================================" - git clone $1 "$_PLUGIN_TARGET_NAME" 2>/dev/null || echo "Failed to install plugin '$_PLUGIN_DIR_NAME', skipping..." + git clone $1 "$_PLUGIN_TARGET_NAME" || echo "Failed to install plugin '$_PLUGIN_DIR_NAME', skipping..." echo "========================================" echo "Installing plugin '$_PLUGIN_DIR_NAME'..." cd "$_PREV_PWD" @@ -70,7 +70,8 @@ install_plugin() { # >> ENABLED: silently fail if not installed install_plugin https://github.com/zdharma-continuum/fast-syntax-highlighting install_plugin https://github.com/zsh-users/zsh-autosuggestions -#install_plugin https://github.com/zsh-users/zsh-syntax-highlighting +# install_plugin https://github.com/marlonrichert/zsh-autocomplete +# install_plugin https://github.com/zsh-users/zsh-syntax-highlighting # << ENABLED # ]] Plugins