From 6ffbc6a63456456ed009202e93db906bc1c169e7 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sun, 15 Sep 2024 17:36:08 +0700 Subject: [PATCH] config(zsh): add rclone env --- data/zsh/bottom-zshrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/data/zsh/bottom-zshrc b/data/zsh/bottom-zshrc index 95233a8..1e3088e 100644 --- a/data/zsh/bottom-zshrc +++ b/data/zsh/bottom-zshrc @@ -148,6 +148,13 @@ if command -v just &>/dev/null; then eval "$(just --completions zsh)" fi +# https://github.com/rclone/rclone +if command -v rclone &>/dev/null; then + export RCLONE_PROGRESS=true + # https://github.com/rclone/rclone/issues/8063 + # export RCLONE_EXCLUDE=".DS_Store" +fi + # https://github.com/crate-ci/typos if command -v typos &>/dev/null; then alias typo="typos --config ~/.config/typos/typos.toml"