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 &!