feat: add setup script for zettelkasten

This commit is contained in:
2025-05-09 22:16:19 +02:00
committed by Hektor Misplon (aider)
parent 8046bd1868
commit b58ff906e9

8
.bin/setup-zk Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
if [ ! -d ~/.zk ]; then
echo "[zk] Setting up zettelkasten"
gh repo clone zk ~/.zk
else
echo "[zk] Zettelkasten already set up. Use 'zk' to open it"
fi