From de601c4a8362da989a907eb6395b95f1d55df0b8 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 30 Jun 2026 10:47:40 -0700 Subject: [PATCH] Update dotfiles --- dotfiles/gitconfig | 6 ++++++ dotfiles/zshrc.d/completions.zsh | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/dotfiles/gitconfig b/dotfiles/gitconfig index 80f7743..fa2c6c7 100644 --- a/dotfiles/gitconfig +++ b/dotfiles/gitconfig @@ -104,3 +104,9 @@ [rerere] enabled = true +[lfs] + concurrenttransfers = 3 +[lfs "customtransfer.xet"] + path = git-xet + args = transfer + concurrent = true diff --git a/dotfiles/zshrc.d/completions.zsh b/dotfiles/zshrc.d/completions.zsh index 67edb0a..d128714 100644 --- a/dotfiles/zshrc.d/completions.zsh +++ b/dotfiles/zshrc.d/completions.zsh @@ -14,4 +14,8 @@ have_command docker && \ missing_comp _docker && \ docker completion zsh > $COMPDIR/_docker || true + + have_command resticprofile && \ + missing_comp _resticprofile && \ + resticprofile generate --zsh-completion > $COMPDIR/_resticprofile || true } &>/dev/null &!