vsplit上的vim文本颜色(白色对白色)

vsplit上的vim文本颜色(白色对白色),vim,rxvt,Vim,Rxvt,我终于开始着手从aterm迁移到urxvt,并且按照我想要的方式设置了大部分内容,但是我仍然有一个关于vim的悬而未决的问题。当我发出:vsplit命令时,每个窗口底部的文本显示文件名是白色的,背景是(几乎)白色的,因此无法读取。在aterm中,该测试在while背景上显示为黑色 什么设置控制这个?我在其他地方没有注意到这个问题,但也没有真正寻找它 这是我的 " .vimrc " See: http://vimdoc.sourceforge.net/htmldoc/options.html fo

我终于开始着手从aterm迁移到urxvt,并且按照我想要的方式设置了大部分内容,但是我仍然有一个关于vim的悬而未决的问题。当我发出:vsplit命令时,每个窗口底部的文本显示文件名是白色的,背景是(几乎)白色的,因此无法读取。在aterm中,该测试在while背景上显示为黑色

什么设置控制这个?我在其他地方没有注意到这个问题,但也没有真正寻找它

这是我的

" .vimrc
" See: http://vimdoc.sourceforge.net/htmldoc/options.html for details

" For multi-byte character support (CJK support, for example):
"set fileencodings=ucs-bom,utf-8,cp936,big5,euc-jp,euc-kr,gb18030,latin1

set tabstop=4       " Number of spaces that a <Tab> in the file counts for.

set shiftwidth=4    " Number of spaces to use for each step of (auto)indent.

"set expandtab       " Use the appropriate number of spaces to insert a <Tab>.
                    " Spaces are used in indents with the '>' and '<' commands
                    " and when 'autoindent' is on. To insert a real tab when
                    " 'expandtab' is on, use CTRL-V <Tab>.

"set smarttab        " When on, a <Tab> in front of a line inserts blanks
                    " according to 'shiftwidth'. 'tabstop' is used in other
                    " places. A <BS> will delete a 'shiftwidth' worth of space
                    " at the start of the line.

set showcmd         " Show (partial) command in status line.

set number          " Show line numbers.

set showmatch       " When a bracket is inserted, briefly jump to the matching
                    " one. The jump is only done if the match can be seen on the
                    " screen. The time to show the match can be set with
                    " 'matchtime'.

set hlsearch        " When there is a previous search pattern, highlight all
                    " its matches.

set incsearch       " While typing a search command, show immediately where the
                    " so far typed pattern matches.

set ignorecase      " Ignore case in search patterns.

set smartcase       " Override the 'ignorecase' option if the search pattern
                    " contains upper case characters.

set backspace=2     " Influences the working of <BS>, <Del>, CTRL-W
                    " and CTRL-U in Insert mode. This is a list of items,
                    " separated by commas. Each item allows a way to backspace
                    " over something.

set autoindent      " Copy indent from current line when starting a new line
                    " (typing <CR> in Insert mode or when using the "o" or "O"
                    " command).

set textwidth=0    " Maximum width of text that is being inserted. A longer
                    " line will be broken after white space to get this width.

set formatoptions=c,q,r,t " This is a sequence of letters which describes how
                    " automatic formatting is to be done.
                    "
                    " letter    meaning when present in 'formatoptions'
                    " ------    ---------------------------------------
                    " c         Auto-wrap comments using textwidth, inserting
                    "           the current comment leader automatically.
                    " q         Allow formatting of comments with "gq".
                    " r         Automatically insert the current comment leader
                    "           after hitting <Enter> in Insert mode. 
                    " t         Auto-wrap text using textwidth (does not apply
                    "           to comments)

set ruler           " Show the line and column number of the cursor position,
                    " separated by a comma.

set background=dark " When set to "dark", Vim will try to use colors that look
                    " good on a dark background. When set to "light", Vim will
                    " try to use colors that look good on a light background.
                    " Any other value is illegal.

set mouse=a         " Enable the use of the mouse.

set undofile
set undodir=$HOME/.vim/undodir
set undolevels=1000 "maximum number of changes that can be undone
set undoreload=10000 "maximum number lines to save for undo on a buffer reload 

filetype plugin indent on
syntax on
let g:Imap_UsePlaceHolders = 0
let g:Tex_EnvironmentMaps = 0
let g:Tex_FontMaps = 0
let g:Tex_SectionMaps = 0
let g:Tex_SmartKeyBS = 0
let g:Tex_SmartKeyQuote = 0
let g:Tex_SmartKeySpace = 0
let g:Tex_SmartKeyDot = 0
let g:Tex_DefaultTargetFormat = 'pdf'
let g:Tex_MultipleCompileFormats = 'pdf dvi'
let g:Tex_EscapeChars = '\'

let g:tex_flavor = "latex"

" arduino syntax
autocmd! BufNewFile,BufRead *.pde setlocal ft=arduino

call pathogen#infect()
call pathogen#helptags()
(对评论的回应。) 如果需要更多上下文,请向上滚动到该部分的顶部(或
:help突出显示default
):

您描述的显示文件名的行是状态行。(
:帮助状态行
,如果需要更多上下文,请向上滚动。)控制状态行显示的设置是突出显示组(不是选项)。您可以使用
:hi StatusLine
检查当前设置,例如,您可以使用更改当前设置

:hi StatusLine term=bold cterm=bold

有关更多选项,请参见
:帮助:突出显示

对不起,我不知道如何使用这些信息。第一个命令给出了“StatusLine xxx term=bold,reverse cterm=bold,reverse gui=bold,reverse”。第二行带我去的帮助部分只给出了StatusLine的一行描述,作为当前窗口的状态行。
:hi StatusLine
:help hl-StatusLine
These are the default highlighting groups.  These groups are used by the
'highlight' option default.  Note that the highlighting depends on the value
of 'background'.  You can see the current settings with the ":highlight"
command.
:hi StatusLine term=bold cterm=bold