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 you should not change the $TERM variable, its your terminal emulator that assigns it. For example, if you use kitty, it would probably be xterm-kitty, and for alacritty it would just be alacritty.
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 you should not change the $TERM variable, its your terminal emulator that assigns it. For example, if you use kitty, it would probably be
xterm-kitty
, and for alacritty it would just bealacritty
.The text was updated successfully, but these errors were encountered: