Move over my entire custom zsh configuration

This commit is contained in:
ItsDrike 2024-03-25 22:46:54 +01:00
parent 89c5009781
commit a13fe57f2a
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
11 changed files with 1059 additions and 25 deletions

View file

@ -0,0 +1,9 @@
# If the set $TERM variable doesn't match any configured terminfo entries
# fall back to xterm. This fixes SSH connections from unknown terminals
if [ -z "$TERM" ]; then
export TERM=xterm
elif ! infocmp "$TERM" &>/dev/null; then
export TERM=xterm
echo "TERM set to xterm due to missing terminfo entry."
end