From 7802dbc79cbb396fbfc78f3bbc5dcb8f361a7995 Mon Sep 17 00:00:00 2001 From: Ian Mancini Date: Thu, 23 Apr 2020 19:34:42 -0300 Subject: [PATCH] Fix tmux true color support --- template/tmux/.tmux.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/template/tmux/.tmux.conf b/template/tmux/.tmux.conf index 88e0a13..555560d 100755 --- a/template/tmux/.tmux.conf +++ b/template/tmux/.tmux.conf @@ -1,3 +1,13 @@ +############## +# True Color # +############## + +# Use the xterm-256color terminal +set -g default-terminal "xterm-256color" + +# Apply Tc +set-option -ga terminal-overrides ",xterm-256color:Tc" + ########### # Keymaps # ###########