tmux中的vim无法多彩高亮显示关键字

1. 问题描述

vim安装了interastingwords插件,在mobaxterm中的session可以正常显示多彩关键字,但是使用tmux登录session,只能显示两个颜色

 

 

2. 解决办法

这是因为tmux默认TERM没有用256color,那么每次运行tmux时指定color即可,TERM=screen-256color-bce tmux

或者更简单一点,在~/.bashrc中设置别名:alias tmux="TERM=screen-256color-bce tmux"

然后在~/.tmux.conf文件中加入这句话:set -g default-terminal "xterm-256color"

 

参考文档

https://rdsconn.djicorp.com/portal/webclient/index.html#/desktop

上一篇:VIM编辑器常用命令


下一篇:【Mac】终端使用pip3 install jupyter命令安装jupyter noteboo时,提示zsh: command not found: jupyter