0

How do I enable full-color support in Vim?

How do I make Terminal faithfully render my Vim colorscheme?

noah
asked Feb 18, 2019
1 Answer
1

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.

View More
linuxhelp
answered Feb 19, 2019
Your Answer
||||
x
 
100:0