> since my FreeBSD servers don't have a termcap file for alacritty, when I ssh into my FreeBSD servers my backspace key doesn't work (along with a lot of other things).
A hack I've got in .zshrc for this problem:
function ssh {
if [[ "${TERM}" = alacritty ]]; then
env TERM=xterm-256color /usr/bin/ssh "$@"
else
/usr/bin/ssh "$@"
fi
}
A hack I've got in .zshrc for this problem: