bashrc & zshrc: Do same what nyuszika7h did in previous commit, but with screen.

This commit is contained in:
Mika Suomalainen 2011-12-29 11:20:01 +02:00
parent 16427e3cc9
commit f6b8bbdd53
2 changed files with 8 additions and 0 deletions

4
bashrc
View File

@ -149,6 +149,10 @@ if [[ $TERM == 'xterm' ]]; then
export TERM=xterm-256color
fi
if [[ $TERM == 'screen' ]]; then
export TERM=screen-256color
fi
# Things after this are just examples and should be put to some other file, which is sourced above.

4
zshrc
View File

@ -76,6 +76,10 @@ if [[ $TERM == 'xterm' ]]; then
export TERM=xterm-256color
fi
if [[ $TERM == 'screen' ]]; then
export TERM=screen-256color
fi
# Things after this are just examples and should be put to some other file, which is sourced above.
# Sets the default editor. I prefer nano to vim and so on, so I want it to be nano. If you don't like terminal based text editors, change "nano" to gedit (Gnome) or Kate (KDE).