example-index.yml 950 B

123456789101112131415161718192021222324252627282930313233
  1. # QMD Collections Configuration
  2. # Location: ~/.config/qmd/index.yml
  3. #
  4. # This file defines all collections and their contexts.
  5. # You can manually edit this file - changes take effect immediately.
  6. # Global context applied to all collections
  7. # Use this for universal search instructions or patterns
  8. global_context: "If you see a relevant [[WikiWord]], you can search for that WikiWord to get more context."
  9. # Collection definitions
  10. collections:
  11. # Meeting notes
  12. Meetings:
  13. path: ~/Documents/Meetings
  14. pattern: "**/*.md"
  15. context:
  16. "/": "Meeting notes and summaries"
  17. # Daily journal entries
  18. journals:
  19. path: ~/Documents/Notes
  20. pattern: "**/*.md"
  21. context:
  22. "/journal/2024": "Daily notes from 2024"
  23. "/journal/2025": "Daily notes from 2025"
  24. "/": "Notes vault"
  25. codex:
  26. path: ~/Documents/Codex
  27. pattern: "**/*.md"
  28. context:
  29. "/": "Thematic collections of important concepts and discussions"