Better RGB support
This commit is contained in:
parent
97d8d3d0b4
commit
c2d3ccb779
5 changed files with 31 additions and 4 deletions
|
@ -50,4 +50,16 @@ _colored_ls() {
|
|||
alias ll="_colored_ls"
|
||||
alias la="_colored_ls -a"
|
||||
|
||||
# To keep until https://github.com/openssh/openssh-portable/commit/f64f8c00d158acc1359b8a096835849b23aa2e86
|
||||
# is merged
|
||||
function _ssh {
|
||||
if [ "${TERM}" = "alacritty" ]
|
||||
then
|
||||
TERM=xterm-256color ssh "$@"
|
||||
else
|
||||
ssh "$@"
|
||||
fi
|
||||
}
|
||||
alias ssh='_ssh'
|
||||
|
||||
## FUNCTIONS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue