From 40920356e788981101efacdb1bb0e3437c134b82 Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Mon, 19 Dec 2016 13:15:09 +0300 Subject: [PATCH] fix error --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 2e5a30f..bfdbb10 100644 --- a/zshrc +++ b/zshrc @@ -103,7 +103,7 @@ export GCC_COLOR="auto" # path for _DIR in $(find "${HOME}/.local/bin" -type d 2> /dev/null); do export PATH="${_DIR}:${PATH}"; done # fix urxvt -if [[ ${TERM} =~ "rxvt-unicode-*" ]] export TERM="xterm" +[[ ${TERM} =~ "rxvt-unicode-*" ]] && export TERM="xterm" # load valid ssh config /bin/rm -f "${HOME}/.ssh/config" find "${HOME}/.ssh/conf.d" -type f -name '*.conf' -exec cat {} > "${HOME}/.ssh/config" \; 2> /dev/null