nushell: wrap ssh with normal TERM variable

This commit is contained in:
LordMZTE 2024-09-17 14:50:30 +02:00
parent 81f6421e4b
commit 118c6ab0a5
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -10,3 +10,7 @@ alias ns = enter .
# "quit shell"
alias qs = dexit
# SSH wrapper to use a more common TERM
def --wrapped ssh [...args] {
TERM=xterm-256color ^ssh ...$args
}