From 4a6303bf470f5c37951c62da53fe5294595a972e Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Sat, 29 Jun 2024 11:19:30 -0500 Subject: [PATCH] chore: adds zsh completions --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/justfile b/justfile index cf394fb..55c66f5 100755 --- a/justfile +++ b/justfile @@ -65,3 +65,12 @@ release: htmlcov: poetry run pytest --cov-report=html + +zsh_completions: + #!/usr/bin/env bash + set -euxo pipefail + if [[ "${DO_NIX_CUSTOM:=0}" -eq 1 ]]; then + eval "$(_TANTRI_COMPLETE=zsh_source tantri)" + else + echo "Nope only nix." + fi