我试图在SO和Google上查看其他答案,但它们似乎都没有改变我的光标设置.我想要一个黄色的背景,白色粗体的前景,但不能用我在网络上看到的设置得到它.我在iTerm2中使用MacVim m
vim.
感谢您的任何帮助.
您最有可能对这三个突出显示组感兴趣:Cursor,CursorColumn和CursorLine.这些名字是不言自明的.
原文链接:https://www.f2er.com/bash/385128.html例如,只更改光标颜色:
:highlight Cursor ctermfg=White ctermbg=Yellow cterm=bold guifg=white guibg=yellow gui=bold
要对列光标执行相同操作:
:highlight CursorColumn ctermfg=White ctermbg=Yellow cterm=bold guifg=white guibg=yellow gui=bold
如果还需要突出显示当前行,请使用CursorLine.