0

How to enable Full Color support in VIM?

How do I make Terminal faithfully render my Vim colorscheme?

vim Add a comment
lawrence
asked Jan 22 2019

Answer

0

GNOME Terminal supports 256 colors, You can override vim's autodetection by entering the Following:

if $COLORTERM == 'gnome-terminal'
  set t_Co=256
endif
in your ~/.vimrc.
Add a comment
linuxhelp
asked Jan 25 2019
Post your Answer