aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-08-19 20:11:31 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-08-19 20:11:31 +1200
commitc923311eeb0cc5c426b8001f905f146d8f373fdd (patch)
treeb7ff87f165f7254c90354d27dbb479d109aa2996 /bash
parentNo special Xterm DECCRA stuff, error-prone in VTE (diff)
downloaddotfiles-c923311eeb0cc5c426b8001f905f146d8f373fdd.tar.gz
dotfiles-c923311eeb0cc5c426b8001f905f146d8f373fdd.zip
Start doing terminals properly
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc14
1 files changed, 0 insertions, 14 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 74a810f8..964d005b 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -88,20 +88,6 @@ for pathdir in $pathdirs; do
fi
done
-# If we're using an xterm, force 256 colors.
-case "$TERM" in
- xterm*) TERM=xterm-256color;;
-esac
-
-# If we're a screen terminal within a 256 color outer, force a 256 color
-# screen terminal too. This deals with a tmux race condition bug.
-case "$containing_term" in
- *256color)
- TERM=screen-256color
- ;;
-esac
-unset containing_term
-
# Figure out how many colors we have now.
hash tput && colors=$(tput colors)