From ff25909ff98aec0f9ac0aa3a2db968aceb0928fb Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Mon, 2 Nov 2020 02:14:28 +0100 Subject: [PATCH] zsh: Disable stderred for now It seems to be incompatible with my current version of gnupg. (*** stack smashing deteced ***: terminated) --- .config/zsh/.zshrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 508bb6c..97a433c 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -126,11 +126,11 @@ if [[ -d "$ZDOTDIR/autoload" ]]; then fi ! command -v direnv >/dev/null 2>&1 || eval "$(direnv hook zsh)" # stderred -if [[ -e "$ZSH_CONF/stderred/build/libstderred.so" ]]; then - export LD_PRELOAD="$ZSH_CONF/stderred/build/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}" - export STDERRED_ESC_CODE="$(tput bold && tput setaf 1)" - export STDERRED_BLACKLIST="^(git|curl|wget|swipl)$" -fi +# if [[ -e "$ZSH_CONF/stderred/build/libstderred.so" ]]; then +# export LD_PRELOAD="$ZSH_CONF/stderred/build/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}" +# export STDERRED_ESC_CODE="$(tput bold && tput setaf 1)" +# export STDERRED_BLACKLIST="^(git|curl|wget|swipl)$" +# fi comp-source "$ZSH_CONF/alias.zsh" comp-source "$ZSH_CONF/functions.zsh" comp-source "$ZSH_CONF/zsh-autosuggestions/zsh-autosuggestions.zsh"