From 82f9d20a6b64f431a70f7caaac5e00dfaf535844 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 4 May 2023 09:51:43 -0500 Subject: [PATCH] don't show todo on tty --- home/private_dot_config/zsh/dot_zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/private_dot_config/zsh/dot_zshrc b/home/private_dot_config/zsh/dot_zshrc index c6fb524..2a22fad 100644 --- a/home/private_dot_config/zsh/dot_zshrc +++ b/home/private_dot_config/zsh/dot_zshrc @@ -61,4 +61,4 @@ fi # Source your static plugins file. source $zsh_plugins -(( $+commands[todo] )) && todo show -s +(( $+commands[todo] )) && is-tty || todo show -s