Files
bash-it/plugins/available/todo.plugin.bash
2021-09-18 22:26:27 -07:00

13 lines
293 B
Bash

#!/bin/bash
cite about-plugin
about-plugin 'Todo.txt integration'
# you may override any of the exported variables below in your .bash_profile
if [ -z "$TODOTXT_DEFAULT_ACTION" ]; then
# typing 't' by itself will list current todos
export TODOTXT_DEFAULT_ACTION=ls
fi
alias t='todo.sh'