From b822957a80c6c2c439341cc99aecbfb22b404b22 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Tue, 14 Feb 2017 23:11:34 +0000 Subject: [PATCH] Fix VTE error on terminix --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index 017857c..035435b 100644 --- a/zshrc +++ b/zshrc @@ -58,6 +58,11 @@ bindkey -v # Source the untracked `extra` file test -e $HOME/.extra && source $HOME/.extra +# Source VTE for Terminix +if [ $TERMINIX_ID ] || [ $VTE_VERSION ]; then + source /etc/profile.d/vte.sh +fi + # Determine the running OS platform="unkown" unamestr=$(uname -s)