Files
personal-wiki/.gitignore
Daniel fd979d8c3a fix: track plugin data.json files + unblock gitignore exception
calendar/data.json:
  - shouldConfirmBeforeCreate: false
  - localeOverride: en-GB
  - weekStart: monday
  - showNoteIndicator: true
  - showWeeklyNote: false

thino/data.json: full UI config with daily save mode, list view

.gitignore updated:
  .obsidian/plugins/*/data.json  (still blocks API keys, sync tokens, etc)
  !calendar/data.json            (exception — safe config, no secrets)
  !thino/data.json               (exception — safe config, no secrets)

Future users now get full plugin configuration out of the box.
2026-04-07 12:43:58 +03:00

32 lines
614 B
Plaintext

# Obsidian
# workspace.json is intentionally tracked — ships with pre-configured graph view
# .obsidian/workspace.json
.obsidian/workspace-mobile.json
.obsidian/plugins/*/data.json
!.obsidian/plugins/calendar/data.json
!.obsidian/plugins/thino/data.json
# Large binary assets — add your own images to _attachments/images/
# Uncomment the line below to exclude images from git (recommended for large vaults)
# _attachments/images/
.smart-connections/
.obsidian-git-data
.trash/
# System
.DS_Store
Thumbs.db
# Python
__pycache__/
*.pyc
.venv/
# Node
node_modules/
# Local secrets
.env
.env.local
*.local.md