From 63f16ca4517ff86c1bf3fbc0014fb373521ccdad Mon Sep 17 00:00:00 2001 From: lub Date: Fri, 28 Feb 2020 20:41:39 +0100 Subject: [PATCH] add ssh alias for alacritty workaround --- dotfiles/bash/.bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotfiles/bash/.bashrc b/dotfiles/bash/.bashrc index 0657c30..2bd7110 100644 --- a/dotfiles/bash/.bashrc +++ b/dotfiles/bash/.bashrc @@ -90,3 +90,7 @@ alias d-u='sudo apt update && sudo apt full-upgrade && sudo apt --purge autoremo alias pp='git pull -r && git push' alias statdiff='git status && git diff --staged' alias gcode='git pull -r && code .' + +# workaround for missing alacritty terminfo on remote terminals +# https://github.com/alacritty/alacritty/issues/3360#issuecomment-588441023 +alias ssh='TERM=xterm-256color ssh'