为tmux和vim开启斜体和真彩色
为tmux和vim开启斜体和真彩色 这篇文章是我上一篇博客: 为tmux和vim开启真彩色 的拓展 一般终端会支持斜体,但是 tmux 中是无法显示斜体的。网上的很多教程都已经过时,今天我来分享下如何在 tmux 中启用斜体吧。参考: reference 1. 检查 tmux 中能否显示斜体 echo -e "\e[3mitalic\e[23m" 2. 创建新的终端类型 我们创建一种新的终端类型 tmux-256colors (有些电脑里可能已经存在了)。 创建一个新的文件 tmux-256color.terminfo ,内容如下 tmux-256color | tmux with 256 colors, ritm = \E [ 23m, rmso = \E [ 27m, sitm = \E [ 3m, smso = \E [ 7m, Ms@, khome = \E [ 1~, kend = \E [ 4~, use = xterm-256color, use = screen-256color, 安装新终端 tic -x tmux-256color.terminfo 3. 修改 .tmux.conf 在 ~/.tmux.conf 里面加入如下内容 set -g default-terminal 'tmux-256color' set -as terminal-overrides