tags:

views:

231

answers:

3

When I do

:colorscheme vilight 

it loads the color scheme fine.

So I added

colorscheme vilight

to my .vimrc but its not loading it on start. Am I missing something?

Also in my config

set background=dark 
syntax on
colorscheme vilight 
set lines=60 columns=200
A: 

Do you have syntax on in your .vimrc?

Benjamin Oakes
yepsyntax oncolorscheme vilight
dMix
Hrm... I just tried your config on my machine (not with `vilight`, but a colorscheme I have installed) and it works. You have `vilight.vim` in `$HOME/.vim/colors/`, correct?
Benjamin Oakes
+4  A: 

Are you using gvim? It is possible that your .gvimrc or the system's gvimrc file is overriding the colorscheme selection from your .vimrc.

Geoff Reedy
yep that was the case. thanks.
dMix