tags:

views:

186

answers:

2

I am sick and tired of the white background when I edit c/c++/etc code. I want the black backround. that is what I currently have in my .vimrc file in regard to coloring. Please help me change it:

if !has('gui_running')
 set t_Co=8 t_md=

highlight NORMAL  ctermbg=black ctermfg=white

thanks

+4  A: 
:help colorscheme

For example:

:colorscheme torte

Or, find a color scheme you like at vim.org.

Sinan Ünür
Also, look into the Color Sampler Pack in the vim script catalog. My personal favorite is vividchalk.
Ball
@Ball the 'Color Sampler Pack' happens to be the first result for the search I linked above.
Sinan Ünür
A: 

Depending on your colorscheme, the following command might work (it does depend on the colorscheme).

:set background=dark
too much php