diff options
author | David Robillard <d@drobilla.net> | 2015-10-18 22:57:04 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-18 22:57:04 -0400 |
commit | 9ed6ca08938c65d958bdb3bbc5d081842c348b93 (patch) | |
tree | 75130e60550e3b6f85f84fa2b1ffaed9de90f76d | |
parent | 25cc6e3eb5f34d65638ff6c61dc8f3174dd29f99 (diff) | |
download | dotfiles-9ed6ca08938c65d958bdb3bbc5d081842c348b93.tar.gz dotfiles-9ed6ca08938c65d958bdb3bbc5d081842c348b93.tar.bz2 dotfiles-9ed6ca08938c65d958bdb3bbc5d081842c348b93.zip |
Make xterm always 256 color
-rw-r--r-- | bashrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -53,6 +53,11 @@ if [ -x /usr/bin/dircolors ]; then alias egrep='egrep --color=auto' fi +# ever seen a monochrome xterm? I sure haven't +if [ "$TERM" = "xterm" ]; then + export TERM=xterm-256color +fi + # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). |