diff --git a/lib/shared/modules/zsh.nix b/lib/shared/modules/zsh.nix index 3f134196..ea002ea9 100644 --- a/lib/shared/modules/zsh.nix +++ b/lib/shared/modules/zsh.nix @@ -58,6 +58,14 @@ t "''${repo_path}" } + just() { + if [[ -f .ignored/justfile ]]; then + ${pkgs.just}/bin/just --justfile .ignored/justfile "''${@}" + else + ${pkgs.just}/bin/just "''${@}" + fi + } + ttyper() { command ${pkgs.ttyper}/bin/ttyper --language english1000 --words 50 "''${@}" }