Vim常见颜色配置常见问题
01-colorscheme
设置颜色风格失效
有时在vim的配置文件中加入颜色配置
代码(如:colorscheme molokai
)或者在命令端输入:colorscheme molokai
后,文本颜色风格可能会缺失,与实际的颜色样式不符,且显示的颜色会出现大面积的一样
的情况。
如下图所示:
原因:这很可能是颜色显示范围不符
造成的,导致部分颜色丢失。
解决方案:
打开Vim安装目录文件夹下的配置文件_vimrc
,在最后面添加如下代码:
set t_Co=256
最终结果:
02-切换颜色风格时报错
报错代码如下:
处理 C:\Program Files (x86)\Vim\vim82\colors\distinguished.vim 时发生错误: 第 16行: The distinguished color scheme requires gvim or a 256-color terminal
处理 C:\Program Files (x86)\Vim\vim82\colors\distinguished.vim 时发生错误:
第 16行:
The distinguished color scheme requires gvim or a 256-color terminal
如图下所示:
解决方案:
在Vim的配置文件_vimrc
的最后面添加如下代码:
set t_Co=256