addet rsync support

This commit is contained in:
pika 2024-05-21 10:12:31 +02:00
parent ff921c9292
commit 6c1edfe716

View file

@ -19,7 +19,7 @@ end
# __/ |
# |___/
# ─< Environment-Variables >───────────────────────────────────────────────────────────────
# ─────────────────────────────────< Environment-Variables >───────────────────────────────
set fish_greeting
set toolbox "The following tools are active:
"
@ -144,6 +144,11 @@ alias grep="grep --color=always"
# ─< weather >──────────────────────────────────────────────────────────────────────────────
alias www='curl wttr.in/Ulm'
# ─< rsync >────────────────────────────────────────────────────────────────────────────────
if command -v rsync >/dev/null 2>&1
alias cp='rsync -avP'
end
# ─< bat alias >────────────────────────────────────────────────────────────────────────────
if command -v batcat >/dev/null 2>&1
alias cat='batcat --color=always -p --paging=never'