0

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
noah
asked Feb 18 2019

Answer

0

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
linuxhelp
asked Feb 19 2019
Post your Answer