| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # QMD Collections Configuration
- # Location: ~/.config/qmd/index.yml
- #
- # This file defines all collections and their contexts.
- # You can manually edit this file - changes take effect immediately.
- # Global context applied to all collections
- # Use this for universal search instructions or patterns
- global_context: "If you see relevant [[WikiWord]] you can do a search for WikiWord to get more context on the matter"
- # Collection definitions
- collections:
- # Meeting notes
- Meetings:
- path: /Users/tobi/Documents/Meetings
- pattern: "**/*.md"
- context:
- "/": "Meeting notes and summaries"
- # Archived content from Shopify
- archive:
- path: /Users/tobi/src/github.com/Shopify/archive/obsidian/archive
- pattern: "**/*.md"
- context:
- # Context can be defined at any path level
- "/Board of Directors": "Public communications with the Shopify BOD"
- "/Context/": "Shopify Internal Podcasts, almost all of them hosted by Tobi"
- "/Summit/": "Tobi's major internal Shopify Summit Keynotes"
- "/": "Shopify archive - historical documents and communications"
- # Daily journal entries
- journals:
- path: /Users/tobi/src/github.com/tobi/Brain/journals
- pattern: "**/*.md"
- context:
- "/2024": "Daily notes from 2024"
- "/2025": "Daily notes from 2025"
- "/": "Logseq - daily notes. Unstructured text in logseq bullet point format"
- # Knowledge base pages
- pages:
- path: /Users/tobi/src/github.com/tobi/Brain/pages
- pattern: "**/*.md"
- context:
- "/": "Logseq knowledge base - structured notes and reference material"
- # Technical RFCs
- rfcs:
- path: /Users/tobi/src/github.com/Shopify/codex/rfcs
- pattern: "**/*.md"
- context:
- "/": "Request for Comments - technical design documents"
- # Thematic collections
- themes:
- path: /Users/tobi/src/github.com/Shopify/codex/themes
- pattern: "**/*.md"
- context:
- "/": "Thematic collections of important concepts and discussions"
|