You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sensible should set the default-terminal and terminal-overrides to the $TERM environment variable.
The reason for this is that it is not recommended to change the $TERM variable, it is your terminal emulator that assigns it. For example, if you use kitty, it is xterm-kitty, and for alacritty it would be alacritty.
This is what sensible should set as the default:
set -g default-terminal "$TERM"
set -g terminal-overrides ",$TERM:Tc"
The text was updated successfully, but these errors were encountered:
I just noticed that and I agree. I do set these options in the beginning, I don't like sensible to overwrite it. The way OP proposed is the correct way to handle true color terminals (or any).
Sensible should set the
default-terminal
andterminal-overrides
to the$TERM
environment variable.The reason for this is that it is not recommended to change the $TERM variable, it is your terminal emulator that assigns it. For example, if you use kitty, it is
xterm-kitty
, and for alacritty it would bealacritty
.This is what sensible should set as the default:
The text was updated successfully, but these errors were encountered: