1

我正在尝试在我的 Vim 中设置 base16-tomorrow 颜色方案,它在 tmux+Putty 之上运行。我用尽了 Google 上的几乎所有链接以使其正常工作,但没有任何反应 =S

这是配色方案现在的样子: 我的 PC 上 base16-tomorrow 的当前 l&f

它应该是怎样的: 在此处输入图像描述

奇怪的是,无论我选择哪种 base16 配色方案,它看起来都一样。

关于我的外壳的一些信息:

$ echo $TERM        # on Putty
xterm-256color      # I configured putty to 256 colors and use this identifier
$ tmux
$ echo $TERM
screen-256color

此外,在 Vim 中,t_Co变量设置为 256。

我怎么解决这个问题?

4

2 回答 2

1

尽管我的.tmux.conf文件中有这个,但它没有帮助:set -g default-terminal "screen-256color"

但是,@xthrd 的这个帮助了我:

您是否尝试过使用 tmux -2 运行 tmux 来强制使用 256 色模式?

于 2019-08-22T21:18:21.967 回答
0

我在 tmux 中显示颜色方案时遇到了类似的问题。
您是否尝试过添加set -g default-terminal "screen-256color"到您的 .tmux.conf

于 2015-02-20T02:38:07.580 回答