As a workaround, I added the following to my .bashrc.
# Turn on 256 color support...
if [ "x$TERM" = "xxterm" ]
then
export TERM="xterm-256color"
fi
With this I can now properly use color-theme in Emacs - before:
... and after:
# Turn on 256 color support...
if [ "x$TERM" = "xxterm" ]
then
export TERM="xterm-256color"
fi
2 comments:
your tip works on gnome-terminal, but not lxterminal
please see the lubuntu wiki at
https://help.ubuntu.com/community/Lubuntu/Documentation/FAQ/Workarounds
Well it definitely works for me with lxterminal on Debian Squeeze.
Post a Comment