From bd1fa71b1b1b20fbf2ab86c25f3daaad93a99ecb Mon Sep 17 00:00:00 2001 From: self Date: Sat, 21 May 2022 22:21:05 +0100 Subject: holc --- zsh/.zshrc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'zsh/.zshrc') diff --git a/zsh/.zshrc b/zsh/.zshrc index 67e968f..315d2d3 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -180,6 +180,12 @@ lle() { # Life Log Entry nvim "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)/L$(date --iso-8601 -d $DT).txt" } +holc () { # Holiday Entry + if [ -z $1 ] ; then DT="today" else DT="$1" fi + mkdir -p "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)" + nvim "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)/H$(date --iso-8601 -d $DT).txt" +} + mer() { # Month End Recap - TODO: get this to work just with e.g. mer 2022-01 if [ -z $1 ] ; then DT="yesterday" else DT="$1" fi mkdir -p "$HOME/docs/daily-log/$(date +%Y-%m -d $DT)" -- cgit v1.2.1