feat: Adds initial note

This commit is contained in:
2025-11-24 16:35:50 -05:00
parent 48acac40cd
commit 6eac65cbe9
2 changed files with 164 additions and 0 deletions

16
justfile Normal file
View File

@@ -0,0 +1,16 @@
[private]
default:
@just --list
# Create a new note.
new *name:
@fname=$(echo {{name}} | tr " " "_") && \
doc="$(isosec).$fname.md" && \
echo "# {{name}}" > "$doc" && \
echo "$doc"
# Get the last note created.
last:
@/bin/ls -t *.md | head -1