ConEmu Solarized color scheme not displaying properly in vim

4

2

I'll like to use vim terminal in ConEmu with Solarized color scheme. After configuring ConEmu and vimrc, some of the text from the help file is unreadable as shown below.

vim screenshot My vimrc:

runtime bundle/vim-pathogen/autoload/pathogen.vim

execute pathogen#infect()
syntax on
filetype plugin indent on

let g:solarized_termtrans = 1
set background=dark
colorscheme solarized

set tabstop=4 shiftwidth=4 softtabstop=4 noexpandtab

My ConEmu settings:

ConEmu settings

xamfoo

Posted 2013-10-23T09:37:26.957

Reputation: 73

1I believe, smth is wrong with your vim config. It draw text with both background and foreground with #4 color. You may show real console (Ctrl+Win+Alt+Space) to ensure that text is unreadable there too. – Maximus – 2013-10-26T01:33:43.427

You are right. I have updated the answer accordingly. – xamfoo – 2013-10-28T06:13:25.743

Answers

2

Found that this is a vim/solarized/cmd related problem. Instead of changing the ConEmu color settings, I can resolve this by adding this to my vimrc:

let g:solarized_underline=0

xamfoo

Posted 2013-10-23T09:37:26.957

Reputation: 73