From 587cc720fb2e74c6aa0f937ea16bf139d67b4273 Mon Sep 17 00:00:00 2001 From: Tony Blyler <tony@citizenmint.com> Date: Tue, 24 Jun 2025 21:11:39 -0400 Subject: [PATCH] Add uv autocomplete support --- chezmoi/dot_zshrc.d/executable_uv.zsh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 chezmoi/dot_zshrc.d/executable_uv.zsh diff --git a/chezmoi/dot_zshrc.d/executable_uv.zsh b/chezmoi/dot_zshrc.d/executable_uv.zsh new file mode 100644 index 0000000..d5605ce --- /dev/null +++ b/chezmoi/dot_zshrc.d/executable_uv.zsh @@ -0,0 +1,7 @@ +if command -v uv &> /dev/null; then + eval "$(uv generate-shell-completion zsh)" +fi + +if command -v uvx &> /dev/null; then + eval "$(uvx --generate-shell-completion zsh)" +fi