diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-04-14 10:02:59 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-04-14 10:02:59 +0200 |
commit | 136a108ecb870c02ec775e0519262a42b6399ade (patch) | |
tree | 19823d56a6453c7c77dc22128b23ce41a550501e /bash | |
parent | c35067aa197500f78693091873acd15994355685 (diff) | |
download | dotfiles-136a108ecb870c02ec775e0519262a42b6399ade.tar.gz |
ssh alias fix
Diffstat (limited to 'bash')
-rw-r--r-- | bash/10-alias.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/10-alias.bash b/bash/10-alias.bash index 723755e..8432faa 100644 --- a/bash/10-alias.bash +++ b/bash/10-alias.bash @@ -17,7 +17,7 @@ if which nvim > /dev/null 2>&1 && [ ! "$FORCE_VANILLA_VIM" = "yes" ] ; then fi # Termite compat -alias ssh="TERM=xterm-color ssh" +alias ssh="TERM=xterm-256color ssh" alias gradle="./gradlew" |