1 Answer
GNOME Terminal supports 256 colors but doesn't advertise its support. You can override vim's autodetection by putting the following:
if $COLORTERM == 'gnome-terminal'
set t_Co=256
endif
in your ~/.vimrc.
Your Answer
x