diff options
Diffstat (limited to 'dotfiles/.config/zsh/shortcuts')
-rw-r--r-- | dotfiles/.config/zsh/shortcuts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dotfiles/.config/zsh/shortcuts b/dotfiles/.config/zsh/shortcuts index 9224957..e8edb18 100644 --- a/dotfiles/.config/zsh/shortcuts +++ b/dotfiles/.config/zsh/shortcuts @@ -28,6 +28,12 @@ alias calc="python -q -i -c 'import math'" alias spw="setsid $TERMINAL >/dev/null 2>&1 &" alias testinet="ping -c2 example.com" +# rsync shortcuts +alias rs="rsync -avh" +alias rsn="rsync -avhn" +alias rsd="rsync -avh --delete" +alias rsdn="rsync -avhn --delete" + # Fuzzy finder alias fzo='op "$(find . -type d -path "*/\.*" -prune -o -not -name ".*" -type f | fzf)"' if [ -f /usr/share/fzf/completion.zsh ]; then |