From 813846096d35c01c51851ab8d8e04d3e8fb19caf Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 30 Nov 2016 11:50:17 +0000 Subject: [PATCH] Ensure 256 color support on linux systems --- shell/_main.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell/_main.sh b/shell/_main.sh index 1c22fc0..19d9c0c 100755 --- a/shell/_main.sh +++ b/shell/_main.sh @@ -2,6 +2,11 @@ # Main Shell Setup # +# Ensure 256 color support in Linux +if [[ "$(uname)" == "Linux" ]]; then + export TERM="xterm-256color" +fi + # Set required path variables DOTBIN="$DOTFILES/bin"