From d9dbdb1946d87f3223e2d32b409c42fad2fbd527 Mon Sep 17 00:00:00 2001 From: Madhura68 Date: Sat, 2 May 2026 21:25:43 +0000 Subject: [PATCH] chore: ignore Obsidian vault and personal sidecar files Add .obsidian/ (Obsidian vault config) and _*.md (personal sidecar notes) to .gitignore so the docs/ tree can serve as canonical source of truth while still being usable as an Obsidian vault for personal authoring. The docs index generator already excludes the same _*.md pattern from INDEX.md. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9c8093c..1cb6d2c 100644 --- a/.gitignore +++ b/.gitignore @@ -72,4 +72,8 @@ jp.sh # Lokale scratch-bestanden Brainstro -/graphify-out \ No newline at end of file +/graphify-out + +# Personal Obsidian authoring layer (vault config + sidecar files prefixed `_`) +.obsidian/ +_*.md \ No newline at end of file