From 188e055677a518ecd3138a37847be76dbfe0cd12 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 7 Nov 2022 21:55:39 +0300 Subject: [PATCH] dotfiles/config/tmux/tmux.conf: true color Enable true color support in tmux. I didn't even know this was not working in my current setup. Very interesting read below. See: https://jdhao.github.io/2018/10/19/tmux_nvim_true_color/ --- dotfiles/config/tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/config/tmux/tmux.conf b/dotfiles/config/tmux/tmux.conf index 93d22a4..526f642 100644 --- a/dotfiles/config/tmux/tmux.conf +++ b/dotfiles/config/tmux/tmux.conf @@ -107,6 +107,9 @@ set-option -g history-limit 4096 # like CentOS 7 don't support tmux-256color so let's keep screen-256color # for now. set-option -g default-terminal "screen-256color" +# 2022-11-07: Tell Tmux that outside terminal supports true color +# See: https://jdhao.github.io/2018/10/19/tmux_nvim_true_color/ +set -ga terminal-overrides ",xterm-256color*:Tc" #### COLOUR (Solarized dark)