4

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
  • 93

1 Answers1

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
  • 93