ConEmu Solarized 配色方案在 vim 中无法正确显示

ConEmu Solarized 配色方案在 vim 中无法正确显示

我想在 ConEmu 中使用带有 Solarized 配色方案的 vim 终端。配置 ConEmu 和 vimrc 后,帮助文件中的某些文本无法读取,如下所示。

vim 截图 我的 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

我的 ConEmu 设置:

ConEmu 设置

答案1

发现这是与 vim/solarized/cmd 相关的问题。我无需更改 ConEmu 颜色设置,只需将其添加到 vimrc 即可解决此问题:

let g:solarized_underline=0

相关内容