VIM 没有在 tmux 中使用正确的配色方案

VIM not using proper colorscheme in tmux

我已经提到了这个问题,并且我尝试了建议的许多更改并且暂时有效。我将我的 Ubuntu 机器更新到最新版本,它破坏了我的 tmux。 lose vim colorscheme in tmux mode

目前在 tmux 之外一切正常,但在 tmux 中 vim 有问题。

我的 vimrc :

call plug#begin('~/.vim/plugged')
Plug 'arcticicestudio/nord-vim'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
call plug#end()

set termguicolors
set hlsearch
syntax on
colorscheme nord

我已经在我的 bashrc 中设置了这两个变量

export TERM="xterm-256color"
alias tmux='tmux -2'

有人建议在 tmux.conf 中添加这个 set -g default-terminal "xterm" 但是添加这个会丢失我的 tmux 中的所有颜色。

我正在使用这个 https://github.com/lemnos/theme.sh 来设置我的终端的配色方案。

我不明白我做错了什么。

我自己最近也遇到了这个问题。将你的配置文件与我的进行比较,我的配置文件比你多几行。

tmux.conf:

set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc"

vimrc

set term=xterm-256color