From 0a677bc018b0bb37bf435925dabb7d3720078a2a Mon Sep 17 00:00:00 2001 From: Daniel Sissom Date: Mon, 8 Jul 2019 15:44:55 -0500 Subject: [PATCH] Fix term env variable for motoko. --- zsh/zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/zshrc b/zsh/zshrc index 98fe80d..cb57024 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -234,6 +234,10 @@ export GPG_TTY=$(tty) # Fix GPG pin prompt bug with git export SDL_VIDEO_FULLSCREEN_HEAD=3 setopt HIST_IGNORE_SPACE +if [[ $HOST == motoko ]]; then + export TERM=xterm-256color +fi + #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~