Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim command line color setting

Is there a way to set different colors for the command line color and the "Normal" text color in vim. When I use

:hi Normal guifg=orange

the command line and the normal text color become orange. I would like the command line at the bottom of the gui to be a different color however.

like image 834
Tyler_Storm Avatar asked Aug 03 '12 23:08

Tyler_Storm


1 Answers

No, not that I know of.

Not without messing with Vim's source.

The command line is under Normal highlighting group.

like image 82
Rook Avatar answered Oct 05 '22 23:10

Rook