Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change between different color schemes in vi?

Tags:

linux

vi

How can I change between different color schemes in vi?

like image 491
user481372 Avatar asked Oct 20 '10 07:10

user481372


1 Answers

you could try different color schemes like this:

https://kb.mediatemple.net/questions/1565/Enabling+vi+syntax+colors#gs

My problem was only deep blue comment color in default color scheme, so I changed just that:

cd ~
vi .vimrc
highlight comment ctermfg=lightblue

or change lightblue to cyan or whatever

like image 100
wick Avatar answered Oct 17 '22 02:10

wick