当前光标所在行加下划线
默认是没有,
set cursorline 显示下划线
set nocursorline 不显示下划线
红框中这条阴影,就是显示行号的效果。
CursorLineNr 行号的颜色的设置
hi CursorLineNr term=bold ctermfg=darkyellow gui=bold guifg=Yellow
1、ctermfg terminal的前景色
2、ctermbg terminal的背景色
3、guifg 图形界面的前景色
4、guibg 图形界面的背景色
1、让光标所在行的行号,显示成darkyellow。(注意,yellow可能看不出效果,darkyellow或者red好使)。
Differentiate between term, cterm, and gui?
"cterm" versus "term" can be infered from &t_Co. A value below 8 could probably be considered "non-color terminal" and a value equal to or above 8 could be considered "color terminal".