bashrc: Set TERM=xterm-256color unconditionally for ssh

This commit is contained in:
Peter Cai 2023-07-25 18:25:32 -04:00
parent 049246a1cb
commit 975fddd2af

View file

@ -14,6 +14,8 @@ export MACHINE_START_SWAY=false # Whether to start Sway from bash
# Source machine-specific config
[[ -f ~/.machine_config ]] && source ~/.machine_config
alias ssh="TERM=xterm-256color ssh"
# SSH without checking or adding host keys to known_hosts
# Useful for cloud server rescue environment & installation
alias sshtmp="ssh -o 'UserKnownHostsFile /dev/null' -o 'StrictHostKeyChecking no'"