diff options
author | Justine Smithies <justine@smithies.me.uk> | 2023-09-04 19:15:14 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2023-09-04 19:15:14 +0100 |
commit | aef193d76cf58066e0793f82074aa021c7aff9be (patch) | |
tree | 8c09b0a11403f17fb29bed516231c0ff2804616c /.bashrc | |
parent | fb09f81dd46d4c4d7be9b75404b4e219d93e2844 (diff) |
Added alias to stop foot terminal confusing ssh
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -54,6 +54,11 @@ esac command -v bat > /dev/null && alias cat='bat --paging=never' alias wanip='dig +short myip.opendns.com @resolver1.opendns.com' +# alias to stop foot terminal confusing ssh +if [[ $TERM = "foot" ]]; then + alias ssh='TERM=linux ssh' +fi + export EDITOR="nvim" export VISUAL="nvim" export MANPATH=$HOME/.local/share/man/:$MANPATH |