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.
This commit is contained in:
Daniel
2026-04-07 12:43:58 +03:00
parent 8286bf1944
commit fd979d8c3a
3 changed files with 216 additions and 0 deletions

7
.obsidian/plugins/calendar/data.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"shouldConfirmBeforeCreate": false,
"localeOverride": "en-GB",
"weekStart": "monday",
"showWeeklyNote": false,
"showNoteIndicator": true
}