AMP AMP
AMP
0
AMP

How do I enable full-color support in Vim?

How do I make Terminal faithfully render my Vim colorscheme?

vim Color Terminal Add a comment
a sample image
noah
asked Feb 18 2019

Answer

AMP
0
AMP

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.

Add a comment
a sample image
linuxhelp
asked Feb 19 2019
Post your Answer