Reputation: 9803
I am trying to set the color scheme Wombat in VIM. I followed the instructions as:
~/.vim/colors/ directory
:colorscheme wombat
However, the editor remains unchanged after running the command. Am I missing something here?
Upvotes: 2
Views: 3065
Reputation: 1108
Try set t_Co=256
in your .vimrc. This could be a problem with your terminal not supporting 256 colors.
Upvotes: 6
Reputation: 30207
Try some radically different colorscheme first, like murphy
, then switch back to wombat. If nothing changes, then vim probably can't read your wombat.vim
, check permissions on the file and on the colors dir to be sure.
Otherwise if you're seeing colors, but missing gray background, it most likely means that your terminal does not support 256 colors as @maverik mentioned. Try setting you terminal emulation to xterm-256color
(if your OS supports it) and try again.
Upvotes: 5