一切因 TrueColor 导致终端配色出问题

关于 TrueColor 的讨论见这里 https://gist.github.com/XVilka/8346728

当我发现某个喜欢的主题颜色没有Putty格式时,我找到了这个工具。颜色主题格式转换 https://terminal.sexy/

Putty 为了支持 TrueColor 需要下载最新的测试版本 https://www.chiark.greenend.org.uk/~sgtatham/putty/snapshot.html

再推荐一个好工具,支持 Putty 多标签页管理的,支持使用 Putty 的设置,不改变默认的 Putty 习惯。WinSSHTerm

测试自己的终端是否支持 TrueColor 可以用这个脚本 https://github.com/hanxi/dotfiles/blob/master/bin/truecolor.sh

输出结果是这样的就是支持 TrueColor
image

另外最近发现 vim 启动太慢了,可以这样调试输出哪一步比较卡。

vim --startuptime timefile .
" https://stackoverflow.com/a/12216578/3025050

:profile start ~/vim_profile.log
:profile func *
:profile file *
" At this point do slow actions
:profile pause
:noautocmd qall!

" unlike quitting `noautocmd` is not really required, it just makes vim quit faster.

继续深挖 https://liyang85.com/how-to-see-which-plugins-are-making-vim-slow

点击进入评论 ...