From f0e3671e1dc89ea2718d90805c8573b6aec5324f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 9 Jul 2024 14:25:41 +0100 Subject: [PATCH] zsh: remove unused functions --- lib/shared/modules/zsh.nix | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/lib/shared/modules/zsh.nix b/lib/shared/modules/zsh.nix index d15f4b6..9d04f26 100644 --- a/lib/shared/modules/zsh.nix +++ b/lib/shared/modules/zsh.nix @@ -30,24 +30,6 @@ fi } - til() { - if [[ ''${#} < 1 ]]; then - echo "No text was provided." - return - fi - - echo ''${1} >> TIL.txt - } - - todo() { - if [[ ''${#} < 1 ]]; then - echo "No text was provided." - return - fi - - echo ''${1} >> TODO.txt - } - ttyper() { command ${pkgs.ttyper}/bin/ttyper --language english1000 --words 50 "''${@}" }